-1
When I try to open this program directly on CMD, without opening in CD path -> python file.py, it arrives to open, but when giving enter, it simply closes... I’ve generated an executable too, through cxFreeze, but when opening and clicking enter, it closes... Can anyone help me?
import random
import numpy
nome = input("Insira seu nome: ")
nome_do_jogo = input("Digite o nome do jogo: ")
prim_num = input("Digite o primeiro numero que pode ser jogado: ")
ult_num = input("Digite o ultimo numero que pode ser jogado: ")
qtd_numeros = input("Digite a quantidade de numeros a serem gerados: ")
mega_sena = numpy.random.randint(int(prim_num), int(ult_num), (1, int(qtd_numeros)))
mega_sena.sort()
print(nome + ", na " + nome_do_jogo + ", você pode jogar os números: " + str(mega_sena))
has to put a print of the command in cmd. Tested by placing python.py file and funfou
– Gilmar Vaz
In CMD it goes normal, but when Gero the executable, in the first enter it closes...
– Leonardo Piolla