Feb-15-2021, 10:14 PM
import random import pyttsx3 import sys for r in range(15): print (r) a = input("Digite o nr.:") if a == '999': sys.exit() else: print ('ok') fname = "bjjj.txt" with open(fname) as f: numbers = f.readline().strip().split() # print the numbers in the file: print(numbers) # for _ in range(1): # loop 15 times k = str(random.randint(1, 16)) if k not in numbers: print (f'{k} não EXISTE') numbers.append(k) else: print (f'{k} EXISTE') continue with open(fname, 'w') as f: # open file in write mode f.write(f'{" ".join(numbers)}\n') # vai ler o ficheiro txt de nome ler # Instrucoes em https://youtu.be/BtwHAvsNaA8 # import pyttsx3 #pip instal pyttsx3 # le o texto que esta guardado em um arquivo .txt with open('C:/Users/José Brito/AppData/Local/Programs/Python/Python39/WORK/ler.txt', 'r', encoding="utf8") as f: texto = f.read() texto = 'Saiu o número ', k # não lê o ficheiro speaker = pyttsx3.init() # inicia serviço biblioteca voices = speaker.getProperty('voices') # metodo de voz # ver as vozes instaladas na maquina for voice in voices: # traz os idiomas de voz instalados em sua maquina print(voice, voice.id) # define a voz padrao, no meu caso o portugues era o[2] (iniciando do zero) speaker.setProperty('voice', voices[1].id) rate = speaker.getProperty('rate') # nao exiuste a voz portuguesa # muda velocidade da leitura, quando menor mais lento speaker.setProperty('rate', rate-(200)) print(texto) # escreve o texto na tela speaker.say(texto) # define o texto que será lido speaker.runAndWait() # le o texto
Quote:When "there is" "continue" the program goes to line 7 (a = input ...).
How do I NOT go to line 7 but go to line 18 (k = str (random .....)
You should go to line 7 only if the number is announced, to give the enter key
thanks![]()