...

/

Well, Something Is Fishy...

Well, Something Is Fishy...

We'll cover the following...

Get out your detective gear, we’re going to solve a mystery.

⚠️ The following code is meant for Python 2.x versions.

Press + to interact
def square(x):
"""
A simple function to calculate the square of a number by addition.
"""
sum_so_far = 0
for counter in range(x):
sum_so_far = sum_so_far + x
return sum_so_far
print(square(10))

Explanatio ...




...