#!/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"