circuitpython/tests/float/complex1_intbig.py
Scott Shawcroft b057fb8a4b
codeformat
2021-04-19 22:22:44 -07:00

6 lines
141 B
Python

# test basic complex number functionality
# convert bignum to complex on rhs
ans = 1j + (1 << 70)
print("%.5g %.5g" % (ans.real, ans.imag))