1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-01 04:20:39 +02:00

Merge pull request #1481 from ananyacleetus/patch-1

Update python.html.markdown
This commit is contained in:
Levi Bostian
2015-10-12 23:29:56 -05:00

View File

@@ -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