Created
March 7, 2016 19:09
-
-
Save lbattaglioli2000/6afc2c0888ff28120993 to your computer and use it in GitHub Desktop.
Intro example to variables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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