File tree Expand file tree Collapse file tree 1 file changed +33
-1
lines changed
Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Original file line number Diff line number Diff line change 1- # python-programming
1+ # python-programming
2+
3+ * Python is an interpreted, high-level and general-purpose, dynamically typed programming language
4+
5+ * It is also Object oriented, modular oriented and a scripting language.
6+
7+ * In Python, everything is considered as an Object.
8+
9+ * A python file has an extension of .py
10+
11+ * Python follows Indentation to separate code blocks instead of flower brackets({}).
12+
13+ * We can run a python file by the following command in cmd(Windows) or shell(mac/linux).
14+
15+ ` $ python <filename.py> ` or ` $ python3 <filename.py> `
16+
17+ ## Menu
18+
19+ - [ Create and execute a program] ( python.md#Create-and-execute-a-program )
20+ - [ Basic Datatypes] ( python.md#Basic-Datatypes )
21+ - [ Keywords] ( python.md#Keywords )
22+ - [ Operators] ( python.md#Operators )
23+ - [ Basic Data Structures] ( python.md#Basic-Data-Structures )
24+ -- [ Dictionary] ( python.md#Dictionary )
25+ -- [ List] ( python.md#List )
26+ -- [ Tuple] ( python.md#Tuple )
27+ -- [ Set] ( python.md#Set )
28+ -- [ Conditional branching] ( python.md#Conditional-branching )
29+ - [ Loops] ( python.md#Loops )
30+ --[ While loop] ( python.md#While-loop )
31+ --[ For Loop] ( python.md#For-Loop )
32+ - [ Function] ( python.md#Function-definition )
33+
You can’t perform that action at this time.
0 commit comments