I was creating a tool in Python, but when I went to run it gives this error. Excerpt from the code: while True: opcao = int(input("Digite a opcao desejada: ") if opcao == 1: arquivo = open("textos.txt", 'w') When I spin it shows up:
Missing close a parenthesis, see: while True: opcao = int(input("Digite a opcao desejada: ")) if opcao == 1: arquivo = open("textos.txt", 'w')
Missing close a parenthesis in previous line
– Woss