Skip to content

Instantly share code, notes, and snippets.

@HFreni
Created February 6, 2016 07:25
Show Gist options
  • Save HFreni/ed424df025a32d37bea0 to your computer and use it in GitHub Desktop.
Save HFreni/ed424df025a32d37bea0 to your computer and use it in GitHub Desktop.
name = "Harrison"
age = 16
hobbies = ["Robotics", "Programming", "Gaming", "Skiing"]
print(name + " Is " + str(age) + " Years Old")
for hobby in hobbies:
print(name + " likes: " + hobby)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment