Small collection of beginner Python utility scripts and exercises.
This repository contains a few small utilities:
from_roman_to_english.py- convert Roman numerals to integers (roman_to_int).max_number.py- simplefind_maxhelper.number_to_words.py- convert digits to spoken words.roll_dice.py- smallDiceclass that rolls six-sided dice.sigma.py- tiny example returning the string "sigma".symbol_to_emoji.py- map text emoticons to emoji characters.
- Create a virtual environment and activate it:
python -m venv .venv
source .venv/bin/activate- Install test dependencies:
pip install -r requirements.txtRun the test suite with:
pytest -qSee CONTRIBUTING.md for guidelines on submitting issues and pull requests.
This project is licensed under the MIT License - see the LICENSE file for details.