def trust(nobody: str) -> None: if nobody != "yourself": raise ValueError("Don't trust anyone") else: print("Trust only yourself.") person = "stranger" trust(person)