An open API service indexing awesome lists of open source software.

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.

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%).