I\'m wanting to have a \"y/n\" in Python, which i\'ve successfully done, but I want the user to be able to input a \"y\" or a \"Y\" and it accepts both.
Here\'s a short
You're looking for
if yn in ("y", "Y"):
Or better:
if yn.lower() == 'y':