mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Merge pull request #3673 from laszlokiraly/patch-1
[python/en] don't overwrite list function
This commit is contained in:
commit
ef6dd28625
@ -467,8 +467,8 @@ prints:
|
||||
1 cat
|
||||
2 mouse
|
||||
"""
|
||||
list = ["dog", "cat", "mouse"]
|
||||
for i, value in enumerate(list):
|
||||
animals = ["dog", "cat", "mouse"]
|
||||
for i, value in enumerate(animals):
|
||||
print(i, value)
|
||||
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user