Skip to content
This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Commit a0416d3

Browse files
committed
Update
1 parent 330c34c commit a0416d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lessons/python/exercises/exercise-general-week-08-012--04.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def check_winner():
6363
while True:
6464
i = int(input(f"Enter 1-9: "))
6565
if i >= 1 and i <= 9:
66-
idx=i-1
66+
idx = i-1
6767
D[L[idx]][idx] = p1
6868
L[idx] -= 1
6969
p1, p2 = p2, p1

0 commit comments

Comments
 (0)