Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
Print number from 1 to 10 using arange() function
Home
NumPy
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)
...