mirror of
https://github.com/TheAlgorithms/Python.git
synced 2026-03-13 09:50:19 +08:00
Fixes broken "Create guess_the_number_search.py" (#8746)
This commit is contained in:
committed by
GitHub
parent
a2783c6597
commit
9b3e4028c6
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user