0% found this document useful (0 votes)
7 views11 pages

Introduction To Python Programming

The document provides an introduction to Python programming, explaining what programming is and defining Python as a high-level, interpreted language known for its simplicity. It highlights the advantages of Python, such as its readability, versatility, and strong community support. Additionally, it covers basic concepts like variables and data types in Python, along with examples for practical understanding.

Uploaded by

ekaangsh220
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)
7 views11 pages

Introduction To Python Programming

The document provides an introduction to Python programming, explaining what programming is and defining Python as a high-level, interpreted language known for its simplicity. It highlights the advantages of Python, such as its readability, versatility, and strong community support. Additionally, it covers basic concepts like variables and data types in Python, along with examples for practical understanding.

Uploaded by

ekaangsh220
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/ 11

Introduction to Python

Programming
An overview
What is Programming?
• Programming is the process of developing instructions or codes, that will be
used to communicate with the computer to accomplish our required tasks or
solve problems.
• And the language that we use to communicate with the computer is called a
programming language. E.g. C, C++, Python, Java etc.
What is Python?
• Python is a high level, interpreted programming language known for its
simplicity and readability.
• (Interpreted means line by line execution)
• Developed By a Dutch Programmer named Guido van Rossum in 1991.
Why Choose Python?
• Easy to read and Learn.
• Widely used and easier learning curve.
• Versatile (Web Dev, AI ML, Data Science, Games)
• Large Community support
• Free and Open Source
Writing your First code in Python.

Code

Output
Variables in Python
• A variable is a name used to store a value in python.
• For example
Example in Python

Code

Output
Data Types in Python
• In Python, data types are used to classify data items and determine what
operations can be performed on them.
Commonly used Data types in Python
• Text Type = str
• Numeric type = int, float, complex

• we will be discussing about these data types today.


Write a program to provide your name, age and your school
name.

Code

Output

You might also like