We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 846278e + 4c24ec9 commit 8622b88Copy full SHA for 8622b88
cs-CZ/code/target-practice-solution/main.py
@@ -7,11 +7,11 @@
7
# Zde je funkce mouse_pressed
8
def mouse_pressed():
9
# print('🎯')
10
- if hit_colour == Color("modrá").hex:
+ if hit_colour == Color("blue").hex:
11
print("Trefil jsi vnější kruh, 50 bodů!")
12
- elif hit_colour == Color("červená").hex:
+ elif hit_colour == Color("red").hex:
13
print("Trefil jsi vnitřní kruh, 200 bodů!")
14
- elif hit_colour == Color("žlutá").hex:
+ elif hit_colour == Color("yellow").hex:
15
print("Trefil jsi střed, 500 bodů!")
16
else:
17
print("Vedle! Žádné body!")
0 commit comments