-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1_Introduction_to_python.py
25 lines (23 loc) · 1.27 KB
/
1_Introduction_to_python.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# What is Python
"""
- Python is a dynamically typed, general purpose programming language that supports an object-oriented programming approach as well as a functional programming approach.
- Python is an interpreted and a high-level programming language.
- It was create by Guido Van Rossum in 1989.
"""
# Features in Python
"""
- Python is simple and easy to understand
- It is interpreted and platform-independent which makes debugging very easy.
- Python is an open-source programming language.
- Python provides very big library support. Some of the popular libraries include NumPy, Tenserflow, Selenium, OpenCV, etc.
- It is possible to integrate other programming languages within python.
"""
# What is Python used for
"""
- Python is used in Data Visualization to create plots and graphical representation.
- Python helps in Data Analytics to analyze and understand raw data for insights and trends.
- It is used in AI and machine Learning to simulate human behavior and to learn from past data without hard coding.
- It is used to create web applications.
- It can be used to handle databases.
- It is used in business and accounting to perform complex mathematical operations along with quantitative and qualitative analysis.
"""