Merge pull request #843 from slashterix/typo

Typo fix
This commit is contained in:
2017-09-21 20:36:20 -04:00
committed by GitHub
+1 -1
View File
@@ -774,7 +774,7 @@ compute x + 1, you have to create another integer and give it a name.
my_list = [1, 2, 3]
my_list[0] = 4
print my_list # [4, 2, 3] <- The same list as changed
print my_list # [4, 2, 3] <- The same list has changed
x = 6
x = x + 1 # The new x is another object