
1. What is Python?
Python is a popular, beginner-friendly programming language used for web development, data analysis, automation, AI, and more. It’s known for its simple, readable syntax — making it easy for anyone to learn.
2. Where to Run Python
You can write and run Python code in:
- The Command Line/Terminal — run
python
orpython3
- A Code Editor (like VS Code, Sublime, or PyCharm)
- Online Interpreters (like Replit or Google Colab)
3. Python Data Categories
When you write your first script, you’ll use basic data types:
- Strings — text inside quotes, like
"Hello, World!"
- Numbers — integers (
10
), floats (3.14
), or complex numbers (2 + 3j
) - Booleans —
True
orFalse
values
This is a simple Python script
Stringname = "Alice"
Numberage = 25
Booleanis_student = True
print("Name:", name)
print("Age:", age)
print("Is student?", is_student)
See the next post.
And also you can find more on this link.