+ 3
In python ,what is 10**2**3? Is it 1000000?
please help
5 Respostas
+ 14
no... but all you had to do to find out was run print(10**2**3)
not worth a question here, I think
+ 7
No, it will give you 100000000 (8 zeros), the reason is ** is performed from right to left, so, you'll have: 10**2**3 = 10**8.
+ 4
thank uuu @ Bàng Tú Cúong
+ 2
that question comes in challege round. but my answer was shown wrong.
+ 1
print(10**2**3)
That bit of code will give you your answer