# クイックスタート

電卓パッケージの基本的な使い方を紹介します。


# インストール

pip でインストールします：

``` bash
pip install gdtest-i18n-japanese
```


# 基本的な使い方

``` python
from gdtest_i18n_japanese import Calculator

calc = Calculator(precision=3)
calc.add_to_total(10.5)
calc.add_to_total(20.3)
print(calc.get_total())  # 30.8
```
