Posts

Showing posts from March, 2024
Image
 Python Turtle : Intro to Programming logic and creativity                    Blog by 22CE022,17 Python is one of the best languages to start learning programming with and python's in-built turtle library helps build logic and algorithmic skills in amateur programmer. click here for py turtle official docs we are given objects and functions of turtle library by which we can create turtle object, give it different shapes and colors, cause movement of the turtle in any direction of the canvas. we can also create pop-ups and show text on screen.  we can create drawings like this :  turtle drawings on github here are few mini games i have created using turtle library: US State guessing game:   The map image is loaded in turtle canvas and the axis of each state are saved in a csv file. Pandas is used to read this csv file. user enters name of a state and if the name is correct then state name is written on that x,y ax...