| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/sofitech05/Source-Code-from-Tutorials/master/Python/02_python.py | [Back] [Original] |
>>> 3 + 4 7 >>> 3 * 20 60 >>> 12 / 4 3.0 >>> 8 + 2 * 10 28 >>> (8 + 2) * 10 100 >>> 18 / 4 4.5 >>> 18//4 4 >>> 18%4 2 >>> 5 * 5 * 5 125 >>> 5 ** 3 125 >>> tuna = 5 >>> 20 + tuna 25 >>> bacon = 18 >>> bacon / tuna 3.6
| Web Proxy Viewer | New URL | Original Page |