SSSagar Sangaminblog.codefirst.fun·Apr 19, 2025 · 6 min readUnit– V Graphics with TurtleIntroduction to Turtle Graphics Turtle graphics is a popular and beginner-friendly way to learn programming, especially for younger audiences or those new to coding. It provides a simple environment where users can control a "turtle" (a graphical cur...00
SSSagar Sangaminblog.codefirst.fun·Apr 19, 2025 · 4 min readUnit– IV Files HandlingFile Handling in Python File handling refers to the process of performing operations on a file such as creating, opening, reading, writing and closing it, through a programming interface. It involves managing the data flow between the program and the...00
SSSagar Sangaminblog.codefirst.fun·Apr 7, 2025 · 5 min readUnit– III Exception handlingIntroduction to Exception Exception Handling handles errors that occur during the execution of a program. Exception handling allows one to respond to the error, instead of crashing the running program. It enables you to catch and manage errors, maki...00
SSSagar Sangaminblog.codefirst.fun·Apr 6, 2025 · 8 min readUnit – II Modules and PackageModules: A Python module contains Python code (functions, classes, and variables) that can be reused in different programs. Modules in Python are just Python files with a .py extension. The name of the module is the same as the file name. A Pyth...00
SSSagar Sangaminblog.codefirst.fun·Mar 29, 2025 · 8 min readUnit – I Basic of Python data structure - Dictionary, Tuple and Sethttps://www.python.org/ for more content you can refer python documentation.. Use of String and list operations in Python programs. In Python, strings and lists are two of the most commonly used data types. They are both versatile and can be manipula...00