Can't turn my .py file in to a WORKING .exe file - python-3.x

I've been struglying to convert my .py file in to a working .exe file. This is my first time doing it and I can't seem to find my mistake.
I've tryed two methods, pyinstaller and cx_Freeze, and both times the conversion would occur without any error, but when I try to open the .exe file, it blinks a CMD window and nothing happens.
Can any one, please, help me?
my program:
import numpy as np
import pandas as pd
verde='\033[1;32m'
vermelho='\033[1;31m'
preto='\033[0;30m'
'DATA FRAME FROTA'
Empilhadeiras={'Paletrans':['PR20','PR16'],'STILL':['FMX','EGU'], 'Ameise':['EJC','X']}
Modelos= pd.DataFrame(Empilhadeiras, columns=['Paletrans','STILL','Ameise'])
print(Modelos)
Custos={'Impostos':[]}
print()
print()
'VALOR DO MAQUINÁRIO'
num_maquinário = float(input("Digite o valor do maquinário: "))
str(float(num_maquinário))
print('R$'+str(float(num_maquinário)))
print()
'VALOR DOS IMPOSTOS'
num_txs = float(input("Digite a alíquota (sem %): "))
print(str(float(num_txs)) + '%')
txs=num_maquinário*(num_txs/100)
str(txs)
print('R$'+ str(txs))
print()
'DEPRECIAÇÃO DO MAQUINÁRIO'
num_depre = float(input("Digite o percentual de depreciação por ano (sem %): "))
print(str(float(num_depre)) + '%')
depre=num_maquinário*(num_depre/100)
str(depre)
print('R$'+ str(depre))
print()
'VALOR DO FRETE'
num_frete = float(input("Digite o valor do frete: "))
str(float(num_frete))
print('Frete trajeto único: R$'+ str(float(num_frete)))
num_frete*2
str(num_frete*2)
print('Frete ida e volta: R$' + str(num_frete*2))
print()
'DURAÇÃO DO CONTRATO'
num_dur = float(input("Digite o tempo de duração do contrato em meses( de 12 a 60): "))
str(float(num_dur))
print(str(float(num_dur))+' meses')
print()
'CUSTO COM SUBSTITUIÇÃO DE PEÇAS'
num_pec = float(input("Digite o custo médio para substituição de peças por mês: "))
str(float(num_pec))
print('R$'+str(float(num_pec)))
num_peças= num_pec*num_dur
print('Custo total com peças ao longo do contrato:R$'+str(num_peças))
print()
'NÚMERO DE VISITAS TÉCNICAS'
num_vis= float(input("Digite o número de visitas técnicas mensais planejadas: "))
str(float(num_vis))
print('R$'+str(float(num_vis)))
num_visit = num_vis*num_dur
print('Custo total com visitas ao longo do contrato: R$'+str(num_visit))
print()
'NÚMERO DE HORAS TÉCNICAS'
num_htec = float(input("Número médio de horas técnicas por atendimento: "))
if num_htec < 4:
if num_htec < 4:
print("R$100,00")
elif 8> num_htec >4:
print("R$200,00")
elif 12> num_htec >8:
print("R$300,00")
else:
print("R$500,00")
else:
print("R$100,00")
m = num_htec*num_vis
def totTec(m):
m = num_htec*num_vis
if m < 4:
if m < 4:
htec = 100
elif 8> m>4:
htec = 200
elif 12> m>8:
htec = 300
elif 16> m>=12:
htec = 500
elif 20> m>16:
htec = 750
elif 24> m>20:
htec = 1200
else:
htec = 1500
else:
htec = 250
return htec
print('Valor Tempo total: R$'+str(totTec(m)))
print()
'CUSTO DAS HORAS DE DESLOCAMENTO'
num_dtemp = float(input("Tempo de deslocamento em horas até o cliente: "))
if num_dtemp < 4:
if num_dtemp < 4:
print("R$100,00")
elif 8> num_dtemp >4:
print("R$200,00")
elif 12> num_dtemp >8:
print("R$300,00")
else:
print("R$400,00")
else:
print("R$100,00")
str(num_dtemp*num_vis)
print('Total de horas:'+str(num_dtemp*num_vis))
a=num_dtemp*num_vis
def totTemp(a):
a=num_dtemp*num_vis
if a < 4:
if a < 4:
temp= 100
elif 8> a>4:
temp= 200
elif 12> a>8:
temp= 300
elif 16> a>12:
temp= 400
elif 20> a>16:
temp= 500
elif 24> a>20:
temp= 600
else:
temp= 400
else:
temp= 100
return temp
print('Valor Tempo total: R$'+str(totTemp(a))+',00')
print()
'CUSTO DA DISTÂNCIA DE DESLOCAMENTO ATÉ O CLIENTE'
num_distância = float(input("Digite a distância até o cliente em KM: "))
if num_distância*2 < 100:
if num_distância*2 < 100:
print("R$40,00")
elif 250> num_distância*2 >100:
print("R$100,00")
elif 400> num_distância*2 >250:
print("R$160,00")
elif 550> num_distância*2 >400:
print("R$220,00")
elif 700> num_distância*2 >550:
print("R$500,00")
else:
print("R$750,00")
else:
print("R$50,00")
k = (num_distância*2)*num_vis
def distTot(k):
k = (num_distância*2)*num_vis
if k < 100:
if k < 100:
dist = 40
elif 250> k>100:
dist = 160
elif 400> k>250:
dist = 220
elif 550> k>400:
dist = 280
elif 700> k>550:
dist = 340
elif 1000>= k>850:
dist = 400
else:
dist = 500
else:
dist = 40
return dist
print('Valor Distância total: R$'+str(distTot(k))+',00')
print()
'CUSTO COM PEDÁGIO'
num_pedágio = float(input("Digite o gasto com pedágio: "))
str(float(num_pedágio))
print('Pedágios por visita: R$'+str(float(num_pedágio)))
num_tped = num_pedágio*num_vis
print('Gasto total com pedágio: R$'+str(num_tped))
print()
'CUSTO COM HOSPEDAGEM'
num_hospedagem = float(input("Digite o gasto com hospedagem: "))
str(float(num_hospedagem))
print('Hospedagem por visita: R$'+str(float(num_hospedagem)))
num_thost = num_hospedagem*num_vis
print('Gasto total com hospedagem: R$'+str(num_thost))
print()
'CUSTO COM ALIMENTAÇÃO'
num_alimentação = float(input("Digite o gasto com alimentação: "))
str(float(num_alimentação))
print('Gasto com alimentação por vista: R$'+str(float(num_alimentação)))
num_tal= num_alimentação*num_vis
print('Gasto total com alimentação: R$'+str(num_tal))
print()
'CUSTO TOTAL INICIAL'
cti= num_maquinário + txs + num_frete
print('Custo inicial: R$'+str(cti))
print()
'CUSTO TOTAL ANUAL'
cta= totTec(m) + num_pec + distTot(k) + totTemp(a) + num_tped + num_thost + num_tal
print('Custo anual: R$'+str(cta))
print()
'CUSTO TOTAL'
CustoTotal= num_maquinário + txs + depre + + (num_frete*2) + totTec(m) + num_pec + distTot(k) + totTemp(a) + num_tped + num_thost + num_tal
print('Custo total: R$'+str(CustoTotal))
'VALOR DO ALUGUEL'
num_alg = float(input("Digite o valor da Parcela Aluguel: "))
str(float(num_alg))
print('R$'+str(float(num_alg)))
rend_anual= num_alg*12
print('Receita Anual:R$'+ str(rend_anual))
print()
'TAXA MÍNIMA DE ATRATIVIDADE'
num_tma = float(input("Digite a Taxa Mínima de Atratividade: "))
str(float(num_tma))
print(str(float(num_tma))+'%')
num_TMA=num_tma/100
print()
dep1= num_maquinário - depre
dep2=dep1 - (dep1*num_depre)
dep3=dep2 - (dep2*num_depre)
dep4=dep3 - (dep3*num_depre)
dep5=dep4 - (dep4*num_depre)
ano_X=(rend_anual- cta)
ano_1=(rend_anual- cta + dep1 + num_frete)
ano_2=(rend_anual- cta + dep2 + num_frete)
ano_3=(rend_anual- cta + dep3 + num_frete)
ano_4=(rend_anual- cta + dep4 + num_frete)
ano_5=(rend_anual- cta + dep5 + num_frete)
n_1=12
n_2=24
n_3=36
n_4=48
n_5=60
Hipotese_1 = np.array([-cti,ano_1])
Hipotese_2 = np.array([-cti,ano_X,ano_2])
Hipotese_3 = np.array([-cti,ano_X,ano_X,ano_3])
Hipotese_4 = np.array([-cti,ano_X,ano_X,ano_X,ano_4])
Hipotese_5 = np.array([-cti,ano_X,ano_X,ano_X,ano_X,ano_5])
VPL_1=np.npv(rate=num_TMA, values=Hipotese_1)
VPL_2=np.npv(rate=num_TMA, values=Hipotese_2)
VPL_3=np.npv(rate=num_TMA, values=Hipotese_3)
VPL_4=np.npv(rate=num_TMA, values=Hipotese_4)
VPL_5=np.npv(rate=num_TMA, values=Hipotese_5)
print(VPL_1)
print(VPL_2)
print(VPL_3)
print(VPL_4)
print(VPL_5)
vpla_1=(VPL_1)*((num_TMA*(1+num_TMA)**n_1)/((1+num_TMA)**(n_1-1)))
vpla_2=(VPL_2)*((num_TMA*(1+num_TMA)**n_2)/((1+num_TMA)**(n_2-1)))
vpla_3=(VPL_3)*((num_TMA*(1+num_TMA)**n_3)/((1+num_TMA)**(n_3-1)))
vpla_4=(VPL_4)*((num_TMA*(1+num_TMA)**n_4)/((1+num_TMA)**(n_4-1)))
vpla_5=(VPL_5)*((num_TMA*(1+num_TMA)**n_5)/((1+num_TMA)**(n_5-1)))
print()
print('vpla_1 (12 meses)')
print(vpla_1)
if vpla_1>0:
print(verde+'Viável')
else:
print(vermelho+'Inviável')
print(preto+'vpla_2 (24 meses)')
print(vpla_2)
if vpla_2>0:
print(verde+'Viável')
else:
print(vermelho+'Inviável')
print(preto+'vpla_3 (36 meses)')
print(vpla_3)
if vpla_3>0:
print(verde+'Viável')
else:
print(vermelho+'Inviável')
print(preto+'vpla_4 (48 meses)')
print(vpla_4)
if vpla_4>0:
print(verde+'Viável')
else:
print(vermelho+'Inviável')
print(preto+'vpla_5 (60 meses)')
print(vpla_5)
if vpla_5>0:
print(verde+'Viável')
else:
print(vermelho+'Inviável')
How I tried to convert it from cx:
from cx_Freeze import setup, Executable
setup(name='VPLA',
version='0.1',
description='Análise de viabilidade para aluguel de empilhadeiras
elétricas',
executables= [Executable("VPLA.py")])
Then went to the Anaconda CMD and typed:
python setup.py build

Related

Executable generated in pycharm doesn't work

I'm working on a python project in the pycharm environment, after finishing the script and checking if it was working and it is, I generated an executable using pyinstaller/auto py to exe, however, when I try to run it, it opens and closes quickly , without executing the code and the process does not appear in windows processes.
follow the script
I have already verified that there is no problem in my code and the CMD is not closing when completing the program, since it is not even starting.
import numpy as np
import smtplib
import email.message
import time
# Funções importantes para o projeto
def linha(tam=42):
return "-=" * tam
def cabeçalho(txt):
print(linha())
print(txt.center(84))
print(linha())
def corpo(txt):
print(txt.center(84))
print(linha())
def menu(lista):
corpo("<Menu Principal>")
corpo("<Escolha uma das opções de acordo com a quantidade de avaliaçãos que você já realizou>")
print("<Digite o número correspondente à opção desejada>")
c = 1
for item in lista:
print(f"{[ c ]} -> {item}")
c += 1
print(linha())
# Interface para o menu principal
cabeçalho("Inicializando...")
time.sleep(5)
cabeçalho("Qual nota você precisa para passar?")
time.sleep(2)
while True:
print(linha())
corpo("<O programa irá informar as notas das avaliação que você não realizou>")
corpo(""" Em caso de erro com o programa, informe o bug pela opção no menu principal
ou
entre em contato com o email Nota.necessaria2023#gmail.com""")
menu(["Primeira avaliação ", "Segunda avaliação", "Terceira avaliação", "Quarta avaliação",
"Reportar Bug/Sugestões para melhorias","Créditos", "Sair do Programa"])
# Entrada
while True:
opcao = input("Qual item você deseja?\n")
try:
opcao = int(opcao)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(opcao) == int:
break
# verificador de opção
# Números inexistentes
if opcao > 7 or opcao < 1:
print("Opção Inválida, selecione novamente")
print(linha())
time.sleep(0.5)
print("Retornando ao menu...")
print(linha())
time.sleep(3)
# Desligar o programa
if opcao == 7:
print(
"""<Desligando aplicação>
Aguarde..."""
)
time.sleep(3)
print("Programa Desligado, Obrigado por utilizar!")
break
print(linha())
# avaliação 1
if opcao == 1:
while True:
p1 = input("Digite aqui sua nota da avaliação 1\n")
try:
p1 = float(p1)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(p1) == float:
break
if p1 > 10:
p1 = 10
print("Calculando...")
time.sleep(1)
for count in np.arange(0, 10, 0.1):
p2 = count + 0.1
n1 = (p1 + p2) / 2
if n1 == 6:
print(f"Sua p2 precisa ser: {p2:.2f}\n")
break
elif p2 == 10:
print("Você não obterá nota suficiente, tire %s para recuperar nas próximas avaliaçãos\n" % (p2))
if n1 == 6:
print("Você precisa tirar nota 6 na p3");
print("Você precisa tirar nota 6 na p4")
if n1 < 6:
for count in np.arange(0, 10, 0.1):
p3 = count + 0.1
p4 = count + 0.1
n2 = (p3 + p4) / 2
mf = (2 * n1 + 3 * n2) / 5
if mf >= 6:
print("Você precisa de, no mínimo, %s na p3 e %s na p4 para passar" % (p3, p4))
break
print(linha())
print("Operação Concluída")
input("Confirme para voltar ao menu")
print("Retornando ao menu...")
time.sleep(2)
# avaliação 2
if opcao == 2:
while True:
p1 = input("Digite aqui sua nota da avaliação 1\n")
try:
p1 = float(p1)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(p1) == float:
break
while True:
p2 = input("Digite aqui sua nota da avaliação 2\n")
try:
p2 = float(p2)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(p2) == float:
break
if p1 > 10:
p1 = 10
if p2 > 10:
p2 = 10
print("Calculando...")
time.sleep(1)
n1 = (p1 + p2) / 2
print(f"Sua média da N1 é: ", n1)
for count in np.arange(0, 10, 0.1):
p3 = count + 0.11
p4 = count + 0.1
n2 = (p3 + p4) / 2
mf = (2 * n1 + 3 * n2) / 5
if mf >= 6:
print(f"Você precisa de, no mínimo, {p3: .2f} na p3 e {p4: .2f} na p4 para passar sem ir para a AF")
break
for count in np.arange(0, 10, 0.1):
p3 = count + 0.1
p4 = count + 0.1
n2 = (p3 + p4) / 2
mf = (2 * n1 + 3 * n2) / 5
if mf >= 3:
print(f"Você precisa de, no mínimo, {p3: .2f} na p3 e {p4: .2f} na p4 para ir para a AF")
break
for count in np.arange(0, 10, 0.1):
AF = count + 0.1
maf = (mf + AF) / 2
if maf >= 5:
print(
f"Se você tirar a nota mínima para ir para a AF precisará de, no mínimo, {AF: .2f} para passar")
break
print(linha())
print("Operação Concluída")
input("Confirme para voltar ao menu")
print("Retornando ao menu...")
time.sleep(2)
# Avaliação 3
if opcao == 3:
while True:
p1 = input("Digite aqui sua nota da avaliação 1\n")
try:
p1 = float(p1)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(p1) == float:
break
while True:
p2 = input("Digite aqui sua nota da avaliação 2\n")
try:
p2 = float(p2)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(p2) == float:
break
while True:
p3 = input("Digite aqui sua nota da avaliação 3\n")
try:
p3 = float(p3)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(p3) == float:
break
if p1 > 10:
p1 = 10
if p2 > 10:
p2 = 10
if p3 > 10:
p3 = 10
n1 = (p1 + p2) / 2
print("Calculando...")
time.sleep(0.5)
print("Sua média da N1 é: ", n1)
print("Calculando...")
time.sleep(1)
for count in np.arange(0, 10, 0.1):
p4 = count + 0.1
n2 = (p3 + p4) / 2
mf = (2 * n1 + 3 * n2) / 5
if mf >= 6:
print(f"Você precisa de, no mínimo, {p4: .2f} na p4 para passar sem ir para a AF")
break
for count in np.arange(0, 10, 0.1):
p4 = count + 0.1
n2 = (p3 + p4) / 2
mf = (2 * n1 + 3 * n2) / 5
if mf >= 3 and mf < 6:
print(f"Você precisa de, no mínimo, {p4: .2f} na p4 para ir para a AF")
break
if mf >= 3 and mf < 6:
for count in np.arange(0, 10, 0.1):
AF = count + 0.1
maf = (mf + AF) / 2
if maf >= 5 and maf <= 6:
print(f"Se você tirar a nota mínima para ir para a AF precisará de, no mínimo, {AF: .2f} para passar")
break
print(linha())
print("Operação Concluída")
input("Confirme para voltar ao menu")
print("Retornando ao menu...")
time.sleep(2)
# Avaliação 4
if opcao == 4:
while True:
p1 = input("Digite aqui sua nota da avaliação 1\n")
try:
p1 = float(p1)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(p1) == float:
break
while True:
p2 = input("Digite aqui sua nota da avaliação 2\n")
try:
p2 = float(p2)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(p2) == float:
break
while True:
p3 = input("Digite aqui sua nota da avaliação 3\n")
try:
p3 = float(p3)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(p3) == float:
break
while True:
p4 = input("Digite aqui sua nota da avaliação 4\n")
try:
p4 = float(p4)
except ValueError:
print("Não é um número válido, Digite somente números válidos.")
if type(p4) == float:
break
if p1 > 10:
p1 = 10
if p2 > 10:
p2 = 10
if p3 > 10:
p3 = 10
if p4 > 10:
p4 = 10
n1 = (p1 + p2) / 2
print("Calculando...")
time.sleep(0.5)
print("A sua média da N1 é:", n1)
n2 = (p3 + p4) / 2
print("Calculando...")
time.sleep(0.5)
print("A sua média da N2 é:", n2)
mf = (2 * n1 + 3 * n2) / 5
print("Calculando...")
time.sleep(0.5)
print("A sua média final é:", mf)
print("Calculando...")
time.sleep(1)
if mf >= 6:
print("Você passou direto!")
elif mf >= 3 and mf < 6:
for count in np.arange(0, 10, 0.1):
AF = count + 0.1
maf = (mf + AF) / 2
if maf >= 5:
print(
f"Se você tirar a nota mínima para ir para a AF precisará de, no mínimo, {AF: .2f} para passar")
break
else:
print("Você reprovou")
print(linha())
print("Operação Concluída")
input("Confirme para voltar ao menu")
print("Retornando ao menu...")
time.sleep(2)
# Reportar Bugs e Sugestões
if opcao == 5:
print("Loading...")
time.sleep(5)
print("Reporte o bug")
print("Após enviar, espere alguns segundos para confirmação")
assunto_email = input("Digite o assunto do email:\n")
def enviar_email():
corpo_email = input("""
Para criar um parágrafo utilize:
<p>Parágrafo1</p>
<p>Parágrafo2</p>
""")
msg = email.message.Message()
msg['Subject'] = assunto_email
msg['From'] = 'Nota.necessaria2023#gmail.com'
msg['To'] = 'Nota.necessaria2023#gmail.com'
password = 'cbxhznbyqqeiovcw'
msg.add_header('Content-Type', 'text/html')
msg.set_payload(corpo_email)
s = smtplib.SMTP('smtp.gmail.com: 587')
s.starttls()
s.login(msg['From'], password)
s.sendmail(msg['From'], [msg['To']], msg.as_string().encode('utf-8'))
print('Email enviado')
enviar_email()
print(linha())
print("Operação Concluída")
input("Confirme para voltar ao menu")
print("Retornando ao menu...")
time.sleep(2)
# Créditos
if opcao == 6:
cabeçalho("Créditos")
print("Criado por: Enzo Gabriel (ManoKondz)")
print("Data de lançamento: 05/02/2023")
print("Versão: beta(v1.0)")
print("Agradecimentos: Matheus Pereira; Isaias do Amaral; João Vitor")
print(linha())
print("Operação Concluída")
input("Confirme para voltar ao menu")
print("Retornando ao menu...")
time.sleep(2)

How can I continue "for-loop" even after an error?

I need some help. I need my code to continue the "for" after error, just show the ticket with an error and skip to the next one without stopping the script.
from zenpy.lib.api_objects import CustomField
from zenpy import Zenpy
import csv, sys
creds = {
'email' : 'xxxxxxxxxxx',
'token' : 'xxxxxxxxxxx',
'subdomain': 'xxxxxxxxxxx'
}
zenpy_client = Zenpy(**creds)
arquivo = '/Users/IDS.csv'
with open(arquivo, 'rt', encoding='utf8') as ficheiro:
leitor = csv.reader(ficheiro)
try:
contador = 0
for linha in leitor:
if contador != 0:
ticket = zenpy_client.tickets(id=linha[0])
ticket.custom_fields.append(CustomField(id=1900002490207, value=linha[1]))
zenpy_client.tickets.update(ticket)
print ('O Ticket = ', linha[0], 'Teve o Este Valor Inserido = ', linha[1])
contador = contador + 1
except csv.Error as e:
print('ficheiro %s, linha %d: %s' % (arquivo, leitor.line_num, e))
Put the try-except in the for loop
for linha in leitor:
try:
if contador != 0:
ticket = zenpy_client.tickets(id=linha[0])
ticket.custom_fields.append(CustomField(id=1900002490207, value=linha[1]))
zenpy_client.tickets.update(ticket)
print ('O Ticket = ', linha[0], 'Teve o Este Valor Inserido = ', linha[1])
contador = contador + 1
except csv.Error as e:
print('ficheiro %s, linha %d: %s' % (arquivo, leitor.line_num, e))
To cover even more errors, you could replace the csv.Error with Exception

Tic Tac Toe project_I am stuck

I currently doing this tic tac toe project, but I am stuck because it does not work, so I need help identifying what errors I made. In addition, I need to allow the user to choose one letter ("X" o "O") and the "X" goes first. I don't know how can I code this. I hope that someone help me, please.
This is the code that I have developed:
# Variables globales
# Tablero vacio
board = ["_", "_", "_",
"_", "_", "_",
"_", "_", "_",]
# Si juego continua
juego_continua = True # El juego continua desde el inicio.
# Quien gana o empata
ganador = None
# Turno asignado
actual_jugador = "X"
# Funcion que defin juego tic tac toe.
def jugar_juego (): #
display_board() # Se va a representar el tablero inicial en pantalla.
# Mientras el juego continua.
while juego_continua: # Booleano
# Definir un solo turno para un jugador arbitrario
handle_turn (actual_jugador)
# Verificar si se acabo el juego
verificar_si_termino_juego()
# Cambiar al otro jugador
cambio_jugador()
# El juego ha terminado
if ganador == "Jugador - X" or ganador == "Jugador - O":
print(ganador + "Ganaste.")
elif ganador == None:
print ("Hay empate.")
def display_board():
print ("\n")
print (board[0] + " | " + board[1] + " | " + board[2] + " 1 | 2 | 3")
print (board[3] + " | " + board[4] + " | " + board[5] + " 4 | 5 | 6")
print (board[6] + " | " + board[7] + " | " + board[8] + " 7 | 8 | 9")
print ("\n")
# Define un turno para el jugador arbitrariamente.
def handle_turn(jugador):
print(jugador + "turno.")
posicion = input("Elegir una posicion desde 1 hasta 9 para comenzar: ")
valid = False
while not valid:
while posicion not in ["1", "2", "3", "4", "5", "6", "7", "8" ]:
posicion = input("Por favor elegir una posicion desde 1 hasta 9 para jugar: ")
posicion = int(posicion) - 1
if board (posicion) == "_":
valid = True
else:
print ("Esta posición ya esta ocupada, elegir otra: ")
board[posicion] = jugador
display_board()
def verificar_si_termino_juego():
verificar_si_gano()
verificar_si_empate()
def verificar_si_gano():
# Establecer variable global
global ganador
# verificar filas
ganador_filas = check_filas()
# verificar columnas
ganador_columnas = check_columnas()
# verificar diagonales
ganador_diagonales = check_diagonales()
if ganador_filas:
ganador = ganador_filas
elif ganador_columnas:
ganador = ganador_columnas
elif ganador_diagonales:
ganador = ganador_diagonales
else:
#No hay ganador
ganador = None
def check_filas():
# Establecer variable global
global juego_continua
# Revisa si las filas son iguales, exceptuando "_"
fila_1 = board[0] == board[1] == board[2] != "_"
fila_2 = board[3] == board[4] == board[5] != "_"
fila_3 = board[6] == board[7] == board[8] != "_"
# Si alguna fila es igual, indica que hay un ganador
if fila_1 or fila_2 or fila_3:
juego_continua = False
# Devuelve el ganador (X o O)
if fila_1:
return board[0]
elif fila_2:
return board[3]
elif fila_3:
return board[6]
# Retorna ninguna si no hay ganador
else:
return None
def check_columnas():
# Establecer variable global
global juego_continua
# Revisa si las columnas son iguales, exceptuando "_"
columnas_1 = board[0] == board[3] == board[6] != "_"
columnas_2 = board[1] == board[4] == board[7] != "_"
columnas_3 = board[2] == board[5] == board[8] != "_"
# Si alguna columna es igual, indica que hay un ganador
if columnas_1 or columnas_2 or columnas_3:
juego_continua = False
# Devuelve el ganador (X o O)
if columnas_1:
return board[0]
elif columnas_2:
return board[1]
elif columnas_3:
return board[2]
else:
return None
def check_diagonales():
# Establecer variable global
global juego_continua
# Revisa si las diagonales son iguales, exceptuando "_"
diagonal_1 = board[0] == board[4] == board[8] != "_"
diagonal_2 = board[2] == board[4] == board[6] != "_"
# Si alguna diagonal es igual, indica que hay un ganador
if diagonal_1 or diagonal_2:
juego_continua = False
# Devuelve el ganador (X o O)
if diagonal_1:
return board[0]
elif diagonal_2:
return board[2]
else:
return None
def verificar_si_empate():
global juego_continua
if "_" not in board:
juego_continua = False
return True
else:
return False
def cambio_jugador():
global actual_jugador
# Si actual jugador fue X, luego cambia a O
if actual_jugador == "X":
actual_jugador = "O"
# Si actual jugador fue O, luego cambia a X
elif actual_jugador == "O":
actual_jugador = "X"
jugar_juego()
The indentation is incorrect.
Here is the updated code:
def handle_turn(jugador):
print(jugador + "turno.")
posicion = input("Elegir una posicion desde 1 hasta 9 para comenzar: ")
valid = False
while not valid:
while posicion not in ["1", "2", "3", "4", "5", "6", "7", "8" ,"9"]:
posicion = input("Por favor elegir una posicion desde 1 hasta 9 para jugar: ")
posicion = int(posicion) - 1
if board[posicion] == "_":
valid = True
else:
print ("Esta posicion ya esta ocupada, elegir otra: ")
board[posicion] = jugador
display_board()

TypeError: can only concatenate tuple (not “str”) to tuple Error

Can some help me. I heave this code:
#Replace Incident Discription
def replace(line):
#Vul hier in waar je op zoekt, waar je het naar verandert wilt hebben, en hoever daarna de tekst moet beginnen die uit de FLEX gehaald word.
rename01 = "AUT.BR","Automatische brandmelding. ",71
rename02 = "BR GEBOUW","Brand gebouw. ",74
rename03 = "BR INDUSTRIE","Brand industrie. ",77
rename04 = "BR CONTROLE","Brand controle. ",76
rename05 = "BR BUITEN","Brand buiten. ",74
rename06 = "BR WEGVERVOER","Brand wegvervoerder. ",78
rename07 = "BR WONING","Brand woning. ",74
rename08 = "BR SPOORVERVOER","Brand spoorvervoerder. ",80
rename09 = "ONG WATER","Ongeval water. ",74
rename10 = "ONG LUCHTVAART","Ongeval luchtvaart. ",79
rename11 = "ONG SPOOR","Ongeval spoor. ",74
rename12 = "ONG WEG","Ongeval wegvervoerder. ",72
# Zoek de term op die gebruikt word in de melding. Vervang deze term en plak vanaf een bepaalde offset de melding tekst er achter.
if rename01[0].lower() in line.lower():
return rename01[1] + line[rename01[2]:]
elif rename02[0].lower() in line.lower():
return rename02[1] + line[rename02[2]:],
elif rename03[0].lower() in line.lower():
return rename03[1] + line[rename03[2]:]
elif rename04[0].lower() in line.lower():
return rename04[1] + line[rename04[2]:]
elif rename05[0].lower() in line.lower():
return rename05[1] + line[rename05[2]:]
elif rename06[0].lower() in line.lower():
return rename06[1] + line[rename06[2]:]
elif rename07[0].lower() in line.lower():
return rename07[1] + line[rename07[2]:]
elif rename08[0].lower() in line.lower():
return rename08[1]+ line[rename08[2]:]
elif rename09[0].lower() in line.lower():
return rename09[1] + line[rename09[2]:]
elif rename10[0].lower() in line.lower():
return rename10[1] + line[rename10[2]:]
elif rename11[0].lower() in line.lower():
return rename11[1] + line[rename11[2]:]
elif rename12[0].lower() in line.lower():
return rename12[1] + line[rename12[2]:]
elif rename13[0].lower() in line.lower():
return rename13[1] + line[rename13[2]:]
else:
return(line[63:])
I use this def to find a special text in a string that looks like:
"FLEX: 2017-07-10 07:45:34 1600/2/A 11.059 [001201972] ALN P 1 BR WONING Warwickstraat Steenbergen NB 201634 (inci-02)"
I search for "BR WONING" and want to change this is Brand woning. it wil return the text Brand woning. and then the rest of the sting that starts with flex with a different offset.
Wenn i test this def all seems to be good. But wenn a call this function an it is used in a other python project I get the fault: TypeError: can only concatenate tuple (not “str”) to tuple Error
second Python project:
print("Uitruk STB " + curtime()+replace(line)+groupid+' '),
I m looking for a easy fix so I can keep the code and only change small things.
Also ways to do it better is nice but first I would like to know what is going wrong.
Thank y

Why aren't the negative numbers being counted properly?

import time
total = 0
pos = 0
zeroes = 0
neg = 0
print('This program will add any seven numbers for you')
time.sleep(2)
print()
a = int(input('Please enter the first number: '))
total = total + a
if a > 0:
pos = pos + 1
elif a == 0:
zeroes = zeroes + 1
elif a < 0:
neg = neg + 1
time.sleep(2)
b = int(input('Please enter the second number: '))
total = total + b
if b > 0:
pos = pos + 1
elif a == 0:
zeroes = zeroes + 1
elif a < 0:
neg = neg + 1
time.sleep(2)
c = int(input('Please enter the third number: '))
total = total + c
if c > 0:
pos = pos + 1
elif c == 0:
zeroes = zeroes + 1
elif c < 0:
neg = neg + 1
time.sleep(2)
d = int(input('Please enter the fourth number: '))
total = total + d
if d > 0:
pos = pos + 1
elif d == 0:
zeroes = zeroes + 1
elif d < 0:
neg = neg + 1
time.sleep(2)
e = int(input('Please enter the fifth number: '))
total =total + e
if e > 0:
pos = pos + 1
elif e == 0:
zeroes = zeroes + 1
elif e < 0:
neg = neg + 1
time.sleep(2)
f = int(input('Please enter the sixth number: '))
total = total + f
if f > 0:
pos = pos + 1
elif f == 0:
zeroes = zeroes + 1
elif f < 0:
neg = neg + 1
time.sleep(2)
g = int(input('Please enter the seventh number: '))
total = total + g
if g > 0:
pos = pos + 1
elif g == 0:
zeroes = zeroes + 1
elif g < 0:
neg = neg + 1
time.sleep(2)
print()
print('The sum of your entries is: ', + total)
time.sleep(2)
print()
print('You entered', + pos, 'positive numbers')
time.sleep(2)
print()
print('You entered', + zeroes, 'zeroes')
time.sleep(2)
print()
print('You entered', + neg, 'negative numbers')
print()
time.sleep(3)
Hello! I have the variable 'neg' keeping a running total of all of the negative numbers that the user enters. It seems as if the negative numbers aren't always being added to the 'neg' running total at the end of the code.
I've been working with Python 3x for about a week now, so be gentle :)
Thanks in advance for the help!
Edit: I have reworked this into a (working) loop per the advice of Kevin, is this a good loop? It seems to work, I'm just looking for pointers as I'm kind of struggling with Python logic. Big thanks to Kevin, wish I could upvote you!
New code posted below:
import time
sums = 0
pos = 0
neg = 0
zero = 0
numb = 0
user_numb = 0
running = True
print('This program will add any 7 numbers for you')
time.sleep(.5)
print()
while running:
user_numb = int(input('Please enter a number: '))
sums = user_numb + sums
numb = numb + 1
print()
if user_numb > 0:
pos = pos + 1
elif user_numb < 0:
neg = neg + 1
elif user_numb == 0:
zero = zero + 1
if numb == 7:
running = False
print()
time.sleep(2)
print('The sum of the numbers entered was: ', + sums)
print()
time.sleep(2)
print('You entered', + pos, 'positive numbers')
print()
time.sleep(2)
print('You entered', + neg, 'negative numbers')
print()
time.sleep(2)
print('You entered', + zero, 'zeroes')
print()
print()
time.sleep(3)
In the section with b you forgot in the copy/pasted code to change all 'a' into 'b' and have still twice an 'a' there:
b = int(input('Please enter the second number: '))
total = total + b
if b > 0:
pos = pos + 1
elif a == 0: # CHANGE TO 'b'
zeroes = zeroes + 1
elif a < 0: # CHANGE TO 'b'
neg = neg + 1
so you see wrong results only in case the second number is a 0 or negative.

Resources