Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 535 Bytes

File metadata and controls

31 lines (20 loc) · 535 Bytes

Experiment No 1

Aim

Python Installation, IDE Setup & Hello World Program

Objective

Install Python, configure IDE, understand interpreter, and write the first Hello, World! program.

Process Flow

  1. Install Python 3.x from the official website.
  2. Install an IDE (VS Code, PyCharm, or use IDLE).
  3. Open the IDE and create a new file named hello.py.
  4. Write the command print("Hello, World!").
  5. Save and run the program.

Code

print("Hello, World!")

Output

Hello, World!