Welcome to Day 1 of the Python Job-Ready Bootcamp – Powered by Coding Vibes! 🚀
Today, we’ll take our first step into the Python universe by installing Python and writing our very first line of code.
🛠️ What You’ll Learn Today:
- How to install Python on your system
- Using VS Code or IDLE to write code
- Writing your first Python script using
print() - Running Python scripts from the terminal or editor
✅ Getting Started
Install Python from python.org. Open VS Code or IDLE and create a new file:
# day1_hello.py
print("Hello, World! Welcome to Python.")
🧠 Why print() Matters
The print() function is the simplest way to display output in Python. It gives you instant feedback and is a great way to test snippets.

🔍 Pro Tip:
name = "Kaustav"
print("Welcome", name)
🧪 Mini Challenge:
Write a script that prints your name, age, and favorite programming language.
👀 Coming Up Tomorrow:
We’ll explore variables, data types, and how to take input from the user. See you on Day 2!

