Loading...

Python Masterclass

Complete video lectures, notes, and source code.

Lecture 1: Introduction to Python + Python Setup

Source Code

Python
print("Hello World")
x = 5
y = 10
print(x + y)
# Variables and printing
name = "Ashish"
age = 22
print("Hello,", name, "Your age is", age)

# Simple loop
for i in range(5):
    print("Iteration:", i)

# Function example
def greet(user):
    return f"Welcome {user}!"

print(greet("Ashish"))

Class Notes

Basics of Python syntax and installation.

Open PDF