Metadata-Version: 2.1
Name: tr3
Version: 1.3
Summary: tr3
Author: fredrik
Author-email: nfredrik@hotmail.com
Requires-Python: >=3.12,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown

[![pypi](https://img.shields.io/pypi/v/midsummer.svg)](https://pypi.python.org/pypi/tr3)
[![Downloads](https://static.pepy.tech/badge/midsummer)](https://pepy.tech/project/tr3) 
[![Downloads](https://static.pepy.tech/badge/midsummer/month)](https://pepy.tech/project/tr3)
[![versions](https://img.shields.io/pypi/pyversions/pydantic.svg)](https://github.com/tr3/tr3)

# Python course at 3

This is demo project to be used in the python course fall 2024.

## Usage

Function prototypes for functions in this package

```python
    def is_divisible_by_3(number:int) -> bool:

    def approx_pi() -> float:
    
    def compound_interest(start_sum: Union[int, float],
                      interest: Union[int, float],
                      no_of_year: int,
                      no_compute: int = 1) -> float:

    add some more to this!
```

