Created
March 29, 2018 06:08
-
-
Save shabbirbhimani/71c568c4a0d8bfd71f87cc3f3064381b to your computer and use it in GitHub Desktop.
4.1 Declaring Numbers
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
# Declaring an integer | |
initialBudget = 1400 | |
# Declaring a decimal or float | |
wagePerDay = 14.5 | |
print('InitialBudget is', initialBudget) | |
print('wagePerDay is', wagePerDay) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment