This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
freecodecamp-projects/8-scientific-computing-python/1-arithmetic-formatter/main.py

12 lines
285 B
Python
Raw Permalink Normal View History

2022-11-25 20:59:31 +00:00
# This entrypoint file to be used in development. Start by reading README.md
from pytest import main
from arithmetic_arranger import arithmetic_arranger
print(arithmetic_arranger(["32 + 698", "3801 - 2", "45 + 43", "123 + 49"], True))
# Run unit tests automatically
main(['-vv'])