Lesson 1 of 10
What is Python?
Python is one of the most popular programming languages in the world. It is known for being easy to read and write — almost like English. Python is used for websites, data analysis, artificial intelligence, automation, and more.
Unlike Java or PHP, Python does not use curly braces {} or semicolons ;. It uses indentation (spaces) to organize code.
PYTHON
# This is a Python comment
print("Hello, World!")
name = "Ali"
age = 25
print("My name is", name)
print("I am", age, "years old")