13 lines
210 B
Python
13 lines
210 B
Python
#!/usr/bin/python3
|
|
|
|
|
|
def is_right() -> bool:
|
|
"""
|
|
Ask the developer if the output of the test is right.
|
|
"""
|
|
|
|
yn = input("\nIs this right? (y/n): ")
|
|
|
|
print("\n")
|
|
|
|
return yn.lower() == "y"
|