My Python learning journey: from fundamentals to advanced concepts. Includes daily practice scripts, exercises, and mini projects with GitHub version tracking.
This repository contains my first Python code where I explored the print() function.
- Basic printing
- Printing variables and numbers
- Using separators and end parameters
- f-strings for formatting
- Escape sequences (
\n,\t) - Printing expressions and comments
- Install Python (if not already installed)
- Clone this repository:
This folder contains my Day 2 Python practice file — Comment.py, where I learned how to use single-line and multi-line comments.
- Single-line comments using
# - Inline comments after code
- Multi-line comments using
'''or""" - Writing algorithm-like descriptions inside comments