mirror of
https://github.com/satwikkansal/wtfpython
synced 2025-07-04 20:38:06 +02:00
6 lines
No EOL
143 B
Python
Executable file
6 lines
No EOL
143 B
Python
Executable file
def square(x):
|
|
runningtotal = 0
|
|
for counter in range(x):
|
|
runningtotal = runningtotal + x
|
|
return runningtotal
|
|
print(square(10)) |