Skip to content

Commit 864352a

Browse files
authored
Update number guessing.py
Fixed comment to valid pythonic syntax
1 parent 6db983f commit 864352a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

number guessing.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def start_game():
1010
print("Hello traveler! Welcome to the game of guesses!")
1111
player_name = input("What is your name? ")
1212
wanna_play = input("Hi, {}, would you like to play the guessing game? (Enter Yes/No) ".format(player_name))
13-
// Where the show_score function USED to be
13+
# Where the show_score function USED to be
1414
attempts = 0
1515
show_score()
1616
while wanna_play.lower() == "yes":

0 commit comments

Comments
 (0)