Module 1

Python Essentials & Syntax

Lesson 1: Getting Started with Python

Python is an interpreted, high-level, general-purpose programming language emphasizing code readability.

PYTHON
def greet(name):
    print(f"Hello, {name}! Welcome to Master Coding.")

greet("Student")