Changes between Initial Version and Version 1 of ProgrammingAnswerPotatoExercise


Ignore:
Timestamp:
Sep 4, 2017, 6:30:27 PM (8 years ago)
Author:
cdelgigante
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ProgrammingAnswerPotatoExercise

    v1 v1  
     1{{{
     2#!python
     3count=1
     4while (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
     12print("score!")
     13}}}