Created
November 28, 2012 18:27
-
-
Save david-hodgetts/4163062 to your computer and use it in GitHub Desktop.
exercise 01 for sae intro python course
This file contains hidden or 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
# sae course | |
# problem solving with python | |
# make this script work | |
print make me work | |
print "i love video games"" | |
prinl 10 * "3 | |
burgers == 10 | |
print "i have %i burgers" % burgers | |
print "%i is %i + %i" % 10 % 5 % 5 | |
age = raw_input "How old are you? " | |
print "you are %s years old." % (age) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment