Skip to content

Commit 7db8846

Browse files
authored
Merge pull request #1772 from HonzaKral/sk-variable-translation
Fix: Forgotten variable translation
2 parents 9bab934 + 91a855c commit 7db8846

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sk/python_introduction/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -779,13 +779,13 @@ Za prvý `if` môžeš dať `elifov` toľko, koľko len chceš. Napríklad:
779779
hlasitost = 57
780780
if hlasitost < 20:
781781
print("Je to pomerne tiche.")
782-
elif 20 <= volume < 40:
782+
elif 20 <= hlasitost < 40:
783783
print("Je to fajn ako hudba na pozadi")
784-
elif 40 <= volume < 60:
784+
elif 40 <= hlasitost < 60:
785785
print("Super, pocujem vsetky detaily")
786-
elif 60 <= volume < 80:
786+
elif 60 <= hlasitost < 80:
787787
print("Fajn na party")
788-
elif 80 <= volume < 100:
788+
elif 80 <= hlasitost < 100:
789789
print("Trochu hlasne!")
790790
else:
791791
print("Bolia ma usi! :(")
@@ -1053,4 +1053,4 @@ Oficiálnu verziu tutoriálu najdeš na https://docs.python.org/3/tutorial/. Pre
10531053

10541054
Teraz na chvíľu si daj pauzu - natiahni sa trochu, poprechádzaj sa, nech si tvoje oči oddýchnu - a potom prejdeme na ďalšiu kapitolu. :)
10551055

1056-
![Koláčik](images/cupcake.png)
1056+
![Koláčik](images/cupcake.png)

0 commit comments

Comments
 (0)