...

/

Puzzle 2: Explanation

Puzzle 2: Explanation

Let’s find out how variables and division operators work in Python.

We'll cover the following...

Let’s try it!

Try executing the code below to verify the result:

Press + to interact
π =355/113
print(π)

Code explanation

There are two surprising things here:

  • A valid identifier is π.
  • The code 355 / 113 computes to a float
...