Computer Science, asked by manshas, 9 months ago

Write a program to print numbers from 10 to 1

GIVE CORRECT ANSWERS

Answers

Answered by karanjotgaidu
0

Answer:

#python program to print numbers from 10 to 1

k = 10

while k>0:

print(k)

k=k-1

____________________________________

Hope it helps....


mayankhi: hi
karanjotgaidu: hello
Answered by anindyaadhikari13
1

Question:-

  • Write a program to print numbers from 10 to 1.

Program:-

This is written in Python.

for i in range(10,0,-1):

print(i, end=" ")

Similar questions