interpretthis 0.4.1

Sandboxed Python AST interpreter for untrusted and LLM-generated code
Documentation
1
2
3
4
5
# math.ceil returns int (not float) and rounds toward positive infinity.
import math

print(math.ceil(2.1))
print(math.ceil(-2.1))