Skip to content

alva922/Python-Basic-Programming-Course

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

Python-Basic-Programming-Course

This guide introduces the reader informally to the basic concepts and features of the Python programming language from scratch.

Learn by examples! The guide supplements all explanations with clarifying examples.  

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.

Python makes development and debugging fast because no compilation step is included in Python development, and the edit-test-debug cycle is very fast.

Python has many web-based assets, open-source projects, and a vibrant community. 

Python is an open-source, cost-free programming language. It is utilized in several sectors and disciplines as a result.

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.

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/

Contents: Why Python?

Installing Jupyter/Anaconda IDE

Getting Started

Declaring Variables

Using Strings

Boolean Values & Operators

Lists

Tuples

Sets

Dictionaries

Arrays

Loops

Conditionals

Functions

Modules

Conclusions

The Road Ahead

References