lib-onedice

January 28, 2022 · View on GitHub

本项目是OneDice标准的标准库

包含了以下支持版本

语言OneDice 版本主要作者项目地址
PythonV1lunzhiPenxilOlivOS-Team/lib-onedice/python
KotlinV1zhaodiceOlivOS-Team/lib-onedice/kotlin

Python 版本

Pypi

安装

从 PyPI 安装(推荐)

  • 使用 pip
pip install onedice

使用

参考代码

import onedice

dice = onedice.RD("(1d8+2d100)*1d10")
dice.roll()
print(dice.resInt)
print(dice.resError)

输出结果

1296
None