https://github.com/harmindersinghnijjar/cs-202
A repository containing all Python programs written for CS 202 Programming Fundamentals 2 at Columbia Basin College.
https://github.com/harmindersinghnijjar/cs-202
columbia-basin-college cs202 oop python tkinter
Last synced: 10 months ago
JSON representation
A repository containing all Python programs written for CS 202 Programming Fundamentals 2 at Columbia Basin College.
- Host: GitHub
- URL: https://github.com/harmindersinghnijjar/cs-202
- Owner: harmindersinghnijjar
- Created: 2023-01-06T02:12:09.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-24T22:40:51.000Z (over 3 years ago)
- Last Synced: 2025-09-08T16:56:03.204Z (10 months ago)
- Topics: columbia-basin-college, cs202, oop, python, tkinter
- Language: Python
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CS 202: Programming Fundamentals 2
A repository containing all Python programs written for CS 202 Programming Fundamentals 2 at Columbia Basin College. All programs are written in Python 3.
## book-store-inheritance
A Python program to demonstrate class inheritance in Python. The Person, Book, and BookAuthor classes are created. The BookAuthor class is a subclass of Person and inherits Person’s properties. The Book class has properties to store the book's title, stock, and price.
## celsius-to-fahrenheit
A Python program to convert Celsius temperatures to Fahrenheit temperatures. The user can enter a Celsius temperature, click the convert button, and display the equivalent Fahrenheit temperature. The GUI was created using the Tkinter module.
## employee-management-system
A Python program that allows a user to manage a dictionary of employees, including adding, changing, and deleting employees.
## mpg-calculator
A Python program to calculate the MPG of a car. The program has labels, entry boxes, and a button for calculating the MPG. When the calculate MPG button is clicked, the program will calculate the MPG and display it in a label.
## patient-procedure-display-total
A Python program that creates a patient and three procedures for the patient. It then prints out the patient's information and the procedures performed.
## this-old-house
A Python program to create a picture of a house with a sky, sun, windows, door, and clouds.
## tree-age
A Python program to draw growth rings and number them.
## trivia
A simple trivia game in Python.