summaryrefslogtreecommitdiffstatshomepage
path: root/tests/float/complex1_intbig.py
blob: 864036b9914eab3d7cfb7200bd7008a4154edd3f (plain) (blame)
1
2
3
4
5
# test basic complex number functionality

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