1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-06-10 06:59:50 +02:00
This commit is contained in:
Ilyes Hammadi 2017-10-18 13:23:54 +00:00 committed by GitHub
commit 0688980cb2

2
README.md vendored
View File

@ -202,7 +202,7 @@ def square(x):
sum_so_far = 0
for counter in range(x):
sum_so_far = sum_so_far + x
return sum_so_far
return sum_so_far
```
**Output (Python 2.x):**