Computer Science, asked by christene74, 1 month ago

write a program in python to print the numbers from 1 to 50.Use either for loop or a while loop​

Answers

Answered by Itzintellectual
1

Answer:

#print 1 to n natural number. #using for loop. num=int(input("Please enter maxinmum number: ")) ...

#Python program to print natural number fro 1 to n. #using while loop. num=int(input("Enter maximum Natural number: ")) ...

#print 1 to n natural number. #using function.

Answered by sreesukhan123
0

Answer:

C Exercises: Prints all even numbers between 1 and 50

Pictorial Presentations

Similar questions