Login
Remember
Register
Ask a Question
Print number from 1 to 10 using arange() function
+1
vote
asked
Jul 9, 2021
in
NumPy
by
rajeshsharma
Print number from 1 to 10 using arange() function
print-arange
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 9, 2021
by
rajeshsharma
Print number from 1 to 10 using arange() function
num = np.arange(1,11)
print(num)
...