Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.02 KB

README.md

File metadata and controls

18 lines (12 loc) · 1.02 KB

Python-Console-Applications

A collection of Python programs I created during college projects and personal learning.

Turtle Winner

A simple program using turtle library that takes mouse-clicks and prints position of click on the title bar. Once any of the turtle exceeds a single horizontal line, it prints the name of the turtle that crossed the line first.

Grading in Table

A simple Python program that takes a list of tuple (each tuple comprises a name and a list of grades associated with that name), and generates associated grade for each person.

Savings

A simple Python programs that calculates how many years it will take to generate certain amount of money. It takes input from the user and prints out the amount of money made in each year.

Car

A simple Python program that uses OOP (Object Oriented Programming) convention to create two Car objects and checks which car wins the race.

Area Of Rectangle

A simple program that takes a constructor to create a Rectangle object and calculates its area.