summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--python.html.markdown5
1 files changed, 5 insertions, 0 deletions
diff --git a/python.html.markdown b/python.html.markdown
index 6cfb5dca..95146ca8 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -4,6 +4,7 @@ contributors:
- ["Louie Dinh", "http://ldinh.ca"]
- ["Amin Bandali", "http://aminbandali.com"]
- ["Andre Polykanine", "https://github.com/Oire"]
+ - ["Ankit Aggarwal", "http://ankitaggarwal.me"]
filename: learnpython.py
---
@@ -144,6 +145,10 @@ bool("") # => False
# Python has a print statement
print "I'm Python. Nice to meet you!"
+# Simple way to get input data from console
+input_string_var = raw_input("Enter some data: ") # Data is stored as a string
+input_number_var = input("Enter a number: ") # Data is stored as a number
+
# No need to declare variables before assigning to them.
some_var = 5 # Convention is to use lower_case_with_underscores
some_var # => 5