feat: update guess number

This commit is contained in:
2025-10-01 21:06:49 +10:00
parent b1e246ef42
commit 3a64f48aea

View File

@@ -10,7 +10,7 @@ if __name__ == "__main__":
print(f'Found it, the number is: {num}') print(f'Found it, the number is: {num}')
exit(0) exit(0)
elif n < num: elif n < num:
print('Less than the number') print('Too small, guess again')
else: else:
print('Greater than the number') print('Too big, guess again')