Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cs-CZ/code/target-practice-solution/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
# Zde je funkce mouse_pressed
def mouse_pressed():
# print('🎯')
if hit_colour == Color("modrá").hex:
if hit_colour == Color("blue").hex:
print("Trefil jsi vnější kruh, 50 bodů!")
elif hit_colour == Color("červená").hex:
elif hit_colour == Color("red").hex:
print("Trefil jsi vnitřní kruh, 200 bodů!")
elif hit_colour == Color("žlutá").hex:
elif hit_colour == Color("yellow").hex:
print("Trefil jsi střed, 500 bodů!")
else:
print("Vedle! Žádné body!")
Expand Down
Loading