Metadata-Version: 2.4
Name: pymathx
Version: 0.1.0
Summary: Add serach for fibonacci's nth digit and the sum. Add permutation and combination and factorial.
Author-email: 林晋右 <moscatolin@qq.com>
License: MIT
Project-URL: Homepage, https://github.com/moss-cat/pymathx
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# outputx

数学库，支持排列组合，斐波那契数列的第n个数的求和和值，阶乘。

## 安装

```bash
pip install pymathx
```

## 示例

```python
from pymathx import *
print(C(2,5))
print(A(2,5))
print(fibosum(40))
print(fibonacci(28))
print(factorial(25))
```

## 许可证

MIT © 林晋右
