WAP to display Cube all numbers from 1 to 100 in python
Answers
Answered by
4
Explanation:
#a python program
for i in range(1,101):
print(i*i*i,end=" ")
Answered by
2
Answer:
Hey! Here is your code in python...
for i in range(101):
print(i**3)
# This displays all the cubes of number from 1 to 100...
# Hope this helps you!!
Similar questions
Math,
6 months ago
English,
6 months ago
Math,
1 year ago
Science,
1 year ago
Psychology,
1 year ago
Social Sciences,
1 year ago