Lesson 01 – Introduction to Python & Getting Started
1. What is Coding?
- Coding means giving instructions to a computer.
- A code is a set of steps that tells a computer what to do.
- Computers follow instructions exactly as written.
2. What is Python?
- Python is a programming language.
- It is easy to read and understand.
- Python looks similar to the English language.
- It is beginner-friendly and very popular.
3. Why Do We Use Python?
Python is used for:
- Games
- Websites
- Mobile & desktop apps
- Artificial Intelligence
- Machine Learning
- Data Science
- Automation
Big companies like Google, YouTube, Instagram, and Netflix use Python.
4. Downloading Python
- Open your browser and go to python.org
- Click Downloads → Download Python
- Check the box Add Python to PATH
- Click Install Now
5. What is PyCharm?
- PyCharm is an IDE (Integrated Development Environment).
- It helps us write, run, and organize Python code.
6. Downloading PyCharm
- Go to jetbrains.com/pycharm
- Download Community Edition
- Install and open PyCharm
7. Creating a Project & File
- Click New Project → Create
- Right-click the project → New → Python File
- Name the file main
8. First Python Program
- Use print() to show output
- Example:
print("Hello, Python")
- Note:
printmust be written in lowercase
9. Summary
- What Python is
- Why Python is important
- Installing Python & PyCharm
- Creating a project & file
- Running Python code
10. Task
- Install Python & PyCharm
- Print your name using print()