diff --git a/game/scoundrel.py b/game/scoundrel.py index 20f54a4..30e732b 100644 --- a/game/scoundrel.py +++ b/game/scoundrel.py @@ -160,9 +160,9 @@ def scoundrel(): if itemtype == 'M': score -= itemval if score > 0: - print('You won! Your score: ' + score) + print('You won! Your score:', score) else: - print('You lost! Your score: ' + score) + print('You lost! Your score:', score) return score