Python Introduction
Python Introduction
Python is a high-level, interpreted programming language known for its simplicity and readability. It is widely used for web development, data science, automation, and more.
Printing in Python
In Python, you can print output using the print()
function.
print("Hello, World!")
Variables in Python
Python allows dynamic typing, meaning you don’t need to specify variable types explicitly.
name = "Alice"
age = 25
print(name, age)