https://github.com/mario-lupo-ciaponi/tkinter-projects
This repository will contain simple tkinter projects.
https://github.com/mario-lupo-ciaponi/tkinter-projects
Last synced: 3 months ago
JSON representation
This repository will contain simple tkinter projects.
- Host: GitHub
- URL: https://github.com/mario-lupo-ciaponi/tkinter-projects
- Owner: Mario-Lupo-Ciaponi
- Created: 2024-04-02T13:00:55.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-04-09T18:38:52.000Z (about 1 year ago)
- Last Synced: 2024-04-10T00:53:47.922Z (about 1 year ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tkinter-Projects
This repository will contain simple tkinter projects.## Projects:
### Calculator:
A simple calculator that can perform the following operations:
- add(e.g. 4 + 5 = 9)
- subtract(e.g. 9 - 5 = 4)
- multiply(e.g. 4 * 5 = 20)
- divide(e.g. 20 / 2 = 10)
- square root(e.g. square root of 49 is 7)### Calendar(failed project):
A calendar generator which takes the year as an input and generates a calendar of the given year.
Note: the formatting is a little broken and should not be used### BMI Calculator:
An app that calculates your BMI based on your height(in meters) and weight(in kilograms).### Compound Interest Calculator:
An app that calculates the compound interest. As input it takes principal amounts, rate and time.
It also has the option to clear the result.### Percent calculator:
An app that calculates the amount of the given percent(E.g. 10% of 100 = 10) and can also calculate the
percent of the given amount(E.g. 50 of 100 = 50%).