Welcome to your first step into the world of Python! Python is one of the most popular and beginner-friendly programming languages used in fields ranging from web development and automation to data science, AI, and robotics.
π Why Python?
Easy to read and write
Large community and lots of tutorials
Used by companies like Google, Netflix, and NASA
Works across platforms (Windows, Mac, Linux)
π§ What Will You Learn?
Write and run your first Python program
Understand basic concepts like output and variables
Use strings and numbers
π― Learning Objectives
Understand what Python is and where itβs used.
Write and run your first Python program.
Use the print() function to display output.
Understand strings, numbers, and basic variables.
π» Code Examples
# This is a comment
print("Hello, world!")
# Variables
name = "Ali"
age = 16
print(name)
print(age)