You are viewing a single comment's thread. Return to all comments →
import numpy a,b,c = input().split() print(numpy.zeros((int(a),int(b),int(c)), dtype = numpy.int)) print(numpy.ones((int(a),int(b),int(c)), dtype = numpy.int))
Does anyone know why this code produces a runtime error for cases 2 and 3?
Seems like cookies are disabled on this browser, please enable them to open this website
Zeros and Ones
You are viewing a single comment's thread. Return to all comments →
Does anyone know why this code produces a runtime error for cases 2 and 3?