Skip to content

Commit 6e45868

Browse files
authored
Update README.md
1 parent c5a0437 commit 6e45868

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

README.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,33 @@
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+

0 commit comments

Comments
 (0)