import numpy N = tuple(map(int, raw_input().split())) print numpy.zeros(N, dtype = numpy.int) print numpy.ones(N, dtype = numpy.int)
What is the use of tuple and map in the input line
What is the use of tuple and map in the input line
ReplyDelete