1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-11-24 03:54:25 +01:00

Update README.md

indentation
This commit is contained in:
临书 2017-09-02 22:52:46 +08:00 committed by GitHub
parent 9d0bba8c4c
commit af48733a09

2
README.md vendored
View File

@ -189,7 +189,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):**