0% found this document useful (0 votes)
14 views4 pages

Programming Using Python: Amey Karkare Dept. of CSE IIT Kanpur

Uploaded by

Suryansh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views4 pages

Programming Using Python: Amey Karkare Dept. of CSE IIT Kanpur

Uploaded by

Suryansh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

Programming using Python

Amey Karkare
Dept. of CSE
IIT Kanpur

For any queries reach out to [email protected] or [email protected]


or whatsapp 9910043510

1
Welcome Python Programming E&ICT IIT Kanpur
Interacting with Python Programs
• Python program communicates its results
to user using print
• Most useful programs require information
from users
– Name and age for a travel reservation system
• Python 3 uses input to read user input as a
string (str)

2
Oct-16 Programming E&ICT IIT Kanpur
input
• Take as argument a string to print as a
prompt
• Returns the user typed value as a string
– details of how to process user string later
IN[1]:

IN[2]: ( )

IN[3]:

Oct-16 Programming E&ICT IIT Kanpur


3
input
• Take as argument a string to print as a
prompt
• Returns the user typed value as a string
– details of how to process user string later
IN[1]:

IN[2]: ( )

IN[3]:

Oct-16 Programming E&ICT IIT Kanpur


4

You might also like