0% found this document useful (0 votes)
2 views5 pages

Inputoutput

Uploaded by

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

Inputoutput

Uploaded by

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

Python Input Output statement

 Today’s Agneda
 Programming,why python,variable,datatype,IDE,input,output
statement
 Learning Objective:- After end of this lesson students will
understand how to give input in python and how to display result
in python.
 What is the need of programing language?
 Why python is used for programming?
Python Input and output
statements
Input :-information or data sent to the user through the keyboard
is called input.
The syntax for input is
input(“prompt message”)

Output:-The information produce by the computer to the user is


called output.
Python provide us two inbuilt function as input() and print()
The syntax for output is
print(“message”)
Variables:-Python variables are simply containers for storing data values.
Like other language python has no command for declaring variable.

stored in memory
Data type
 Each variable can be thought of as a memory location that can hold a specific types.
This type is called data type.
 There are different kind of data types available in python
 Numeric data type:-int,float,complex
 String data type:-Str
 Boolean type:-bool
 Operators:
 Arithmatic operators
 + ,-,/,//,%
 Logical operators
 AND OR NOY
What is IDE?
 An integrated development environment (IDE)
is a software application that helps programmers
develop software code efficiently.
e.g Pycharm

 We are covering IDLE because it comes


with Python, and because it is not too
complex for beginning programmers to
use effectively.

You might also like