Skip to content

Instantly share code, notes, and snippets.

@lbattaglioli2000
Created March 7, 2016 19:09
Show Gist options
  • Save lbattaglioli2000/6afc2c0888ff28120993 to your computer and use it in GitHub Desktop.
Save lbattaglioli2000/6afc2c0888ff28120993 to your computer and use it in GitHub Desktop.
Intro example to variables
# This is a float (a decimal number)
money = 120.42
# This is a boolean (True or False)
answer = True
# This is a string (It's in quotes)
greeting = "Hello... "
# This is also a string even though it's number
stringNum = "42"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment