-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPython1.txt
More file actions
46 lines (35 loc) · 1.58 KB
/
Python1.txt
File metadata and controls
46 lines (35 loc) · 1.58 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
🐍Python🐍
01]Overview of Python ?
Python is
⭐Highlevel
⭐Interpreted
⭐General Purpose
programming language.
⭐Highlevel:
🎈Easy to code
🎈properly readable
🎈Python's Syntax is similar to natural language by which the understanding of the code is much better.
🎈In Python low-level details like 🟢memory management 🟢Hard drive Interaction is less tampered and we don't need to take care about them.
⭐Interpreted:
🎈Code is executed line-by-line by that debugging and modify becomes convienient.
🎈We don't need compile the code in compiler like C and Java.
⭐General Purpose:
🎈Python can be used in any field and application.
🎈Python is a versatile language which can be used from Web-development to Data Science.
02]History of Python
Guido van rossom created Pyhton on christmas holiday in 1989
His main aim was to create to a powerful language as PERL and but as easy to read and write as ABC.
✅Its 1st version was made in 1994.
✅Its 2nd version was developed in 2000.
✅Its 3rd version was developed in 2008.[latest version]
03]Why Python is popular ?
✅Used in Google, Youtube, Instagram.
⭐Top Features of Python
1.Easy to code.[English like syntax]
2.Object Oriented language.[code can be reuse and maintained][Code can be organised in Class and Objects]
3.GUI programming support.[module and fuctions which helps to create graphical apps.]
4.Highlevel language
5.Large Community support.
6.Easy to Debug.[PDB module is used to find errors.]
7.Extendable and Embeddable.[Can Integrate with other languages like C/C++]
8.Multiple Programming Paradigm.