Lab-wise codes and documentation for SUIIT – CSE B.Tech 5th Semester.
PP_Lab/
├── lab1/
│ └── assignment1.py # Lab 1: Basics (print, patterns, newline)
│
├── lab2/
│ ├── assignment2.py # Lab 2: Variables, data types, scope
│ ├── labactivity1.py # Assignment & dynamic typing
│ ├── labactivity2.py # Local & global scope
│ ├── labactivity3.py # input() and print() parameters
│ ├── Lab2.docx # Lab 2 documentation
│ └── test.py # Testing of f-strings
│
└── README.md
Clone the repo:
git clone https://github.com/Manas-Dikshit/Python_Programming-Lab.gitGo to the Python_Programming-Lab folder
Run any script with:
# Windows (Python 3)
python lab1\assignment1.py
python lab2\assignment2.py
python lab2\labactivity1.py
# Linux / macOS
python3 lab1/assignment1.pyRun a specific activity:
python lab2\labactivity2.pyOpen the documentation:
start lab2\Lab2.docx # Windows
open lab2/Lab2.docx # macOS
xdg-open lab2/Lab2.docx # LinuxFor SUIIT 5th Sem CSE students — free to use for lab activities, assignments, and submissions.
Made By MRD With ❤️