DAY ONE OF PYTHON NOTES BY ABHI TECH

DAY 1 OF PYTHON NOTES


Day 1: Python Basics - Part 1  ๐Ÿ‘ˆ

Topics:

  • What is Python?

  • Python Installation & Setup

  • Your First Python Program

  • Comments

  • Variables and Data Types

  • Input & Output Functions

Notes:

๐Ÿ What is Python?

  • High-level, general-purpose programming language.

  • Easy syntax, great for beginners.

  • Used in Web Dev, Data Science, AI, Automation, etc.

๐Ÿ›  Installation

  • Download Python from: python.org

  • Install any IDE: PyCharm / VS Code / Jupyter / IDLE.

✅ First Python Program

python
print("Hello, World!")

๐Ÿ’ฌ Comments

  • Single-line: # This is a comment

  • Multi-line:

python
""" This is a multi-line comment """

๐Ÿ“ฆ Variables & Data Types

python
x = 10 # Integer name = "Abhi" # String price = 99.99 # Float is_active = True # Boolean

๐Ÿงพ Input & Output

python
name = input("Enter your name: ") print("Welcome", name)


BY-ABHI TECH

Comments

Popular posts from this blog

DAY 3 OF PYTHON NOTES

DAY 4 OF PYTHON NOTES