|
1 | 1 | # Python-Basic-Programming-Course |
| 2 | +This guide introduces the reader informally to the basic concepts and features of the Python programming language from scratch. |
| 3 | + |
| 4 | +Learn by examples! The guide supplements all explanations with clarifying examples. |
| 5 | + |
| 6 | +Python is a general-purpose, dynamic, high-level, and interpreted programming language. It is a multipurpose programming language because it can be used with web, enterprise, 3D CAD, etc. |
| 7 | + |
| 8 | +Python makes development and debugging fast because no compilation step is included in Python development, and the edit-test-debug cycle is very fast. |
| 9 | + |
| 10 | +Python has many web-based assets, open-source projects, and a vibrant community. |
| 11 | + |
| 12 | +Python is an open-source, cost-free programming language. It is utilized in several sectors and disciplines as a result. |
| 13 | + |
| 14 | +Python has many third-party libraries that can be used to make its functionality easier. These libraries cover many domains, for example, web development, scientific computing, data analysis, and more. |
| 15 | + |
| 16 | +If you find that you do not have Python installed on your computer, then you can download it for free from the following website: https://www.python.org/ |
| 17 | + |
| 18 | +Contents: |
| 19 | +Why Python? |
| 20 | + |
| 21 | +Installing Jupyter/Anaconda IDE |
| 22 | + |
| 23 | +Getting Started |
| 24 | + |
| 25 | +Declaring Variables |
| 26 | + |
| 27 | +Using Strings |
| 28 | + |
| 29 | +Boolean Values & Operators |
| 30 | + |
| 31 | +Lists |
| 32 | + |
| 33 | +Tuples |
| 34 | + |
| 35 | +Sets |
| 36 | + |
| 37 | +Dictionaries |
| 38 | + |
| 39 | +Arrays |
| 40 | + |
| 41 | +Loops |
| 42 | + |
| 43 | +Conditionals |
| 44 | + |
| 45 | +Functions |
| 46 | + |
| 47 | +Modules |
| 48 | + |
| 49 | +Conclusions |
| 50 | + |
| 51 | +The Road Ahead |
| 52 | + |
| 53 | +References |
0 commit comments