https://github.com/dever-m/dice_roller
https://github.com/dever-m/dice_roller
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dever-m/dice_roller
- Owner: DevER-M
- License: mit
- Created: 2021-05-18T13:08:20.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-11-11T14:10:54.000Z (over 4 years ago)
- Last Synced: 2025-03-14T12:16:23.718Z (over 1 year ago)
- Language: Python
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
# How to use this
```python
import random_dice_roller as rdr
rdr.roll_dicev()
print(rdr.roll_dice_MaxMin(minimum_number=1,maximum_number=100)) # for any numbers (returns a rand num in int)
print(rdr.roll_dice()) # to roll the normal dice(1 to 6) in a number format
``