These are basic projects written in Python. They use various modules such as tkinter or sqlite3.
- Classes
- Django Checkbook Project
- Database
- Nice or Mean
- Abstraction
- Encapsulation
- File Transfer
- Inheritance
- Polymorphism
- Web Page Generator
This project functions as a university database. It stores and displays information about different schools.
This project functions as a checkbook. It saves and displays information related to deposits and withdrawals.
This project filters a list of filenames and stores .txt files in a database, then displays the results.
The game greets the player, asks for their name, and then presents a series of scenarios where "a stranger approaches you for a conversation." Each time, you must choose whether to be nice (N) or mean (M). Your choices are tracked with "nice" and "mean" counters.
This project uses abstraction in Python to define a common interface for subclasses (here, all animals must have a make_sound() method). It provides a concrete implementation with the Dog class. It then creates a dog and prints information about it using both the abstract and regular methods.
This file defines a simple BankAccount class in Python to demonstrate the concept of encapsulation.
This is a utility app for regularly copying recently modified files from one folder to another, using a simple GUI.
This file demonstrates class inheritance in Python using animals as an example.
This file demonstrates the concept of polymorphism in Python using classes that represent animals.
This script creates a simple GUI application using Python's Tkinter library that generates an HTML file and opens it in your web browser.