Python Basics Week1
Python Basics Week1
Title: Week 1: Python Basics – Replanned Subtitle: Your first step into coding! Visuals: Python logo, clean
background
Topics Covered: - What is Python? - Where is Python Used? - How Python Code Runs
Examples:
print("Hello, Python!")
1
Challenge: Install Python and print your name
Topics Covered: - Variables - Data Types: int, float, str, bool - Input / Output basics
Examples:
Example:
Type: Self-Practice
Example:
2
name = input("What's your name? ")
print(" Hello", name)
Example:
Example:
# Calculator
a = float(input())
b = float(input())
print(a + b)
# Formatter
name = input("Enter name: ")
print(name.upper())
3
Topics: - Building scripts with input/print - Q&A and recap
Live Classes: 3
Videos: 2
Challenges: 2
Projects: 2