wiki:ProgrammingAnswerPotatoExercise

Version 1 (modified by cdelgigante, 8 years ago) (diff)

--

count=1
while (count<=7):
   if (count==4):
      print("more!")
   else: 
      for r in range(0,count):
         print(count, "potato, ", end="")
      print("")
   count+=1
print("score!")