Computer Science, asked by akkunirmal, 1 year ago

WAP to display Cube all numbers from 1 to 100 in python​

Answers

Answered by Anonymous
4

Explanation:

#a python program

for i in range(1,101):

print(i*i*i,end=" ")

Answered by gaganadithyareddy9
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