wtfpython/mixed_tabs_and_spaces.py

6 lines
143 B
Python
Raw Normal View History

def square(x):
runningtotal = 0
for counter in range(x):
runningtotal = runningtotal + x
return runningtotal
print(square(10))