mirror of
https://github.com/satwikkansal/wtfpython
synced 2024-11-11 05:58:53 +01:00
8 lines
205 B
Python
Executable File
8 lines
205 B
Python
Executable File
def square(x):
|
|
sum_so_far = 0
|
|
for _ in range(x):
|
|
sum_so_far += x
|
|
return sum_so_far # noqa: E999 # pylint: disable=mixed-indentation Python 3 will raise a TabError here
|
|
|
|
print(square(10))
|