Skip to content

Commit

Permalink
Fix #144 Lists example variable name mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
fivaldi committed Dec 7, 2021
1 parent 51223e1 commit f713a2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lessons/beginners/list/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ Na mazání prvků můžeš použít i metody zmíněné výše:

```python
balicek = ['eso', 'sedma', 'svršek', 'sedma', 'král']
liznuta_karta = karty.pop()
liznuta_karta = balicek.pop()
print(liznuta_karta)
print(balicek)

Expand Down

0 comments on commit f713a2d

Please sign in to comment.