pocketpy/tests/00_tmp.py
blueloveTH 88f893ddd7 ...
2024-08-10 20:21:40 +08:00

7 lines
125 B
Python

from cmath import isclose, sqrt
res = sqrt(1+2j)
assert isclose(res, 1.272019649514069+0.7861513777574233j)
a = 1+2j
{a: 1}