Toggle navigation
English
Chinese
Python Sandbox
Please refer to
this tutorial
to find more details on the following codes.
# # Standard arithmetic symbols like '+','-','*','/' work the same way in Python. # The symbol '**' gives power of a number. The symbol '%' gives the modulo after division. # Floating point numbers can be declared by using a decimal point. # print(7+3*4) print((4-3)*(22+7)) print(55%3) print(2**8)
Run
List