1
0
Fork 0

adds aye/nay to parseYN()

This commit is contained in:
Aye Nay Aye 2024-12-03 09:02:49 -03:00
parent b5cce2a049
commit f5293a5be8
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ import atexit
def parseYN(s, default = False):
if default == False:
return s.lower() in ['true', '1', 't', 'y', 'yes', 'yeah', 'yup', 'certainly', 'uh-huh', 'go for it']
else: return not s.lower() in ['false', '0', 'f', 'n', 'no', 'nah', 'nope', 'certainly not', 'nuh-huh', 'bugger that']
return s.lower() in ['true', '1', 't', 'y', 'yes', 'yeah', 'yup', 'certainly', 'uh-huh', 'go for it', 'aye']
else: return not s.lower() in ['false', '0', 'f', 'n', 'no', 'nah', 'nope', 'certainly not', 'nuh-huh', 'bugger that', 'nay']
def getYN(b):
return "yes" if b else "no"