home
Learn
screen_rotation
# define main function to print out something def main(): i = 1 max = 10 while (i < max): print(i) i = i + 1 # call function main main()
Program Output
1 2 3 4 5 6 7 8 9