Skip to content

Instantly share code, notes, and snippets.

@eliflores
Created November 11, 2019 19:28
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 eliflores/02388b9f6cb1e4606880d40fa9c51a83 to your computer and use it in GitHub Desktop.
Save eliflores/02388b9f6cb1e4606880d40fa9c51a83 to your computer and use it in GitHub Desktop.
Python Intro from Django Girls Tutorial
def hi(name):
print('Hi ' + name + '!')
girls = ['Ely', 'Abril', 'Anita', 'Meli', 'You']
for name in girls:
hi(name)
print('Next girl')
for i in range(1, 6):
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment