You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
5 lines
142 B
Python
5 lines
142 B
Python
# test basic complex number functionality
|
|
|
|
# convert bignum to complex on rhs
|
|
ans = 1j + (1 << 70); print("%.5g %.5g" % (ans.real, ans.imag))
|