
Set up a Python development environment by installing Visual Studio Code, Python, and the Python extension, then write and run your first program using print.
Explore Python fundamentals by applying if statements and conditional logic to read user input, convert it to int, and classify numbers as positive or negative using if/else.
Discover how Python uses indentation to define blocks and how to add comments with the hash symbol, including common indentation errors and readability best practices.
Learn how to use for loops in Python to iterate over lists, print each item, apply transformations like doubling numbers and uppercasing strings, and understand indentation and iteration concepts.
Explore the while loop in Python, using a boolean condition and an increment to print values 1 through 5, and learn how a break statement exits the loop when needed.
Explore integers, floats, and complex numbers in Python, using the type function to identify data types and perform type conversion between int, float, and complex.
Learn how to assign strings to variables and fetch individual characters from strings in Python using single or double quotes, zero-based indexing, and the type function.
Loop through a Python string with a for loop, measure its length with len, and check for a word or character using in, while practicing printing and handling type errors.
Master Python string slicing with colon notation to extract ranges, including first five characters and end slices, and use negative indexing from the end.
Learn string manipulations in Python by using upper and lower for case, strip, lstrip, and rstrip for whitespace removal, and replace and split to transform strings for applications.
Learn how to concatenate strings and format values in Python using the plus operator and the format method with placeholders, including index-based ordering for dynamic messages.
Master python fundamentals (Free Course)
With this course, you can start your python learning journey. We'll start with setting up your local machine python development environment.
After that, we'll make progress and learn the concepts of Python.
What is Python?
Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation.
Python is dynamically-typed and garbage-collected. It supports multiple programming paradigms, including structured (particularly procedural), object-oriented and functional programming. It is often described as a "batteries included" language due to its comprehensive standard library.
Guido van Rossum began working on Python in the late 1980s as a successor to the ABC programming language and first released it in 1991 as Python 0.9.0. Python 2.0 was released in 2000 and introduced new features such as list comprehensions, cycle-detecting garbage collection, reference counting, and Unicode support. Python 3.0, released in 2008, was a major revision that is not completely backward-compatible with earlier versions.
Python consistently ranks as one of the most popular programming languages.
Course Contents
- Python development environment set up
- Conditional Statements in Python
- Loop Controls in Python
- Number and Strings in Python
- String Manipulation in Python.
This will give you a basic idea and fundamentals of Python and will kick start your Python learning journey.