Write Program to Print Number From 1 to 10 Using While Loop In Python Example: Code Program n = 1 while n <= 10: print(n) n = n+ 1 Output
Post a Comment