Online Math Calculator
Shoutout to BobDotCom#4428 for his help
pip install web-math
calculate() takes one required and one optional argument
calculate([TASK], [PRECISION])
TASK = str
PRECISION = int
# import webmath and asyncio
import asyncio
from web_math import webmath
# make def
async def bread():
output = await webmath.calculate("3+3*3-sqrt(pi)", 4)
print(output)
# run def
asyncio.run(bread())
# with 4 digit precision
10.23
# without digit precision
10.227546149094485