Skip to content

Instantly share code, notes, and snippets.

@jerluc
Created August 31, 2015 06:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jerluc/f776e3fe002fbfe2f58b to your computer and use it in GitHub Desktop.
Save jerluc/f776e3fe002fbfe2f58b to your computer and use it in GitHub Desktop.
Lacey's first program
def turtle(name, num):
for n in range(num):
if n < num-1:
print(name + ",")
else:
print(name)
turtle("Lacey Leeder", 10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment