mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Added instructions for input operations in Python3
This commit is contained in:
parent
8ec133b295
commit
a8b32c362b
@ -160,6 +160,10 @@ print("I'm Python. Nice to meet you!") # => I'm Python. Nice to meet you!
|
|||||||
# Use the optional argument end to change the end character.
|
# Use the optional argument end to change the end character.
|
||||||
print("Hello, World", end="!") # => Hello, World!
|
print("Hello, World", end="!") # => Hello, World!
|
||||||
|
|
||||||
|
# Simple way to get input data from console
|
||||||
|
input_string_var = input("Enter some data: ") # Returns the data as a string
|
||||||
|
# Note: In earlier versions of Python, input() method was named as raw_input()
|
||||||
|
|
||||||
# No need to declare variables before assigning to them.
|
# No need to declare variables before assigning to them.
|
||||||
# Convention is to use lower_case_with_underscores
|
# Convention is to use lower_case_with_underscores
|
||||||
some_var = 5
|
some_var = 5
|
||||||
|
Loading…
Reference in New Issue
Block a user