I am creating a script and in a snippet I create a list and then I use the strip () function next to upper () inside input v1, but at the time of calling the script and executing it it returns nothing, how can I to solve this?
....
opcao_sim = ('SIM','YES')
opcao_nao = ('NÃO','NO')
v1 = str(input('Deseja criar um repositorio? n[s]: ')).strip().upper()[0]
if v1 in op_sim:
print('ok! bons estudos XD')
sys.exit(0)
...