Find knowledge base article(s) by searching for keywords in the title e.g. type linux in the search box below
Find knowledge base article(s) by browsing the subject categories of articles
Technology quick references, cheatsheets, user manuals etc.
Shop Online through ShopifyLite
Tutorials on various IT applications.
Search Title    (UL:0 |SS:f)

Scripting >> Python >> Examples >> Input Output >> How to read input data from the terminal

 

Version Example 1:
Python 2.6 >>> name=raw_input("What is your name: ")
What is your name: John
>>> print(name)
John
Python 2.7
Python 3.6 >>> name=input("What is your name: ")
What is your name: John
>>> print(name)
John

Python 2.x uses raw_input()

Python 3.x uses input()

 

[ © 2008-2021 myfaqbase.com - A property of WPDC Consulting ]