+1 vote
in NumPy by
Print number from 1 to 10 using arange() function

1 Answer

0 votes
by

Print number from 1 to 10 using arange() function

 num = np.arange(1,11)

print(num)

Related questions

+2 votes
asked Jul 4, 2021 in NumPy by sharadyadav1986
+3 votes
asked Jul 28, 2019 in R Language by Aarav2017
...