Class-7 Python Notes
Class-7 Python Notes
PYTHON LANGUAGE
1. What is Python?
Ans: Python is a high-level programming language. It has simple language syntax which
makes it easy to read and write. It was developed by Guido Van Rossum in 1991. Python
is used in various application areas such as:
• Web application
• Scientific & Numeric computational applications
• Games
• Images Processing and graphic designing applications
• Network programming
• Artificial Intelligence
• Machine Learning
3. Define Variables.
Ans: Variables are memory locations for storing data values. When a variable is created,
some space is allocated in memory for it. To create a variable in python you just need to
assign a value to a variable. For Ex-
age = 30, name = “amit”