Skip to content

Instantly share code, notes, and snippets.

@opentokix
Created May 14, 2024 11:08
Show Gist options
  • Save opentokix/b9f7bdff2e52c9facc4c05443b8ea409 to your computer and use it in GitHub Desktop.
Save opentokix/b9f7bdff2e52c9facc4c05443b8ea409 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
def main():
print("Do you want quality? (yes/no):")
x = input()
if x == "yes":
print("You have to come to the right place!")
elif x == "no":
print("You have come to the wrong place!")
else:
print("You have not answered the question!")
main()
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment