Changes between Initial Version and Version 1 of ProgrammingAnswerPotatoExercise
- Timestamp:
- Sep 4, 2017, 6:30:27 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ProgrammingAnswerPotatoExercise
v1 v1 1 {{{ 2 #!python 3 count=1 4 while (count<=7): 5 if (count==4): 6 print("more!") 7 else: 8 for r in range(0,count): 9 print(count, "potato, ", end="") 10 print("") 11 count+=1 12 print("score!") 13 }}}