Fixes broken "Create guess_the_number_search.py" (#8746)

This commit is contained in:
Caeden Perelli-Harris
2023-05-17 07:47:23 +01:00
committed by GitHub
parent a2783c6597
commit 9b3e4028c6
2 changed files with 3 additions and 1 deletions

View File

@@ -148,7 +148,7 @@ def guess_the_number(lower: int, higher: int, to_guess: int) -> None:
break
print(f"guess the number : {last_numbers[-1]}")
print(f"details : {str(last_numbers)}")
print(f"details : {last_numbers!s}")
def main() -> None: