diff options
author | Cameron Wood <github@cbwood.net> | 2015-10-13 14:07:04 -0400 |
---|---|---|
committer | Cameron Wood <github@cbwood.net> | 2015-10-13 14:07:04 -0400 |
commit | 0ac8ac899b43eb017f8582d29bf7597fb2b285b1 (patch) | |
tree | 5d77057451ac78ac9e62da316c9d6066a7969412 /python.html.markdown | |
parent | e32eb715ef41e411da0a91b40e6e35f150a9c2eb (diff) | |
parent | 59a07411effbd0ed6289e062621deb29fe8641a8 (diff) |
Merge remote-tracking branch 'refs/remotes/adambard/master'
Diffstat (limited to 'python.html.markdown')
-rw-r--r-- | python.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown index 6cfb5dca..5b36083d 100644 --- a/python.html.markdown +++ b/python.html.markdown @@ -142,7 +142,7 @@ bool("") # => False #################################################### # Python has a print statement -print "I'm Python. Nice to meet you!" +print "I'm Python. Nice to meet you!" # => I'm Python. Nice to meet you! # No need to declare variables before assigning to them. some_var = 5 # Convention is to use lower_case_with_underscores |