Computer Science, asked by sukantisukantiswain, 6 months ago

programme to print the no. from 10 to 1 using while loop....

i=10
while i >=1:
print(i)
i=i-1

Answers

Answered by harshvirsing55
10

Answer:

n=10

while n>=1:

   print(n)

   n-=1            #n=n-1

Answered by Anonymous
2

Friendship is a relationship of mutual affection between people. It is a stronger form of interpersonal bond than an association, and has been studied in academic fields such as communication, sociology, social psychology, anthropology, and philosophy

Similar questions