Questions tagged as 'python-3.x'

1
answer

Filter python list

I need to remove elements from a list whose elements reference for removal are in another list: # Esta lista foi gerada por combinação lista original=[ (182361, 243148, 360624, 364188), (182361, 243148, 360624, 547083), (182361,...
asked by 12.11.2018 / 17:05
1
answer

Stand-alone Python software (.exe file) for non-python machines with GUI and TkInter

I am developing software using Python 3.6.5 and need to run it on machines that do not have python installed. It contains some libraries for machine learning and access and excel to MS. I've seen some solutions on the internet to convert it to...
asked by 08.11.2018 / 08:33
0
answers

How to make multiple dynamic charts with PyQt5?

I need to make four dynamic charts on a single screen but I can not figure how. I can only display one chart at a time. I used the code below as an example, but I can not create four graphs and display them. #! python3 #coding: utf-8 import...
asked by 16.10.2018 / 17:47
1
answer

Notification system [closed]

I have the following template: from django.db import models from django.utils.timezone import now # Create your models here. class Event(models.Model): name = models.CharField('nombre',max_length = 255) place = models.CharField('lugar...
asked by 04.10.2018 / 03:22
0
answers

I have a small problem with listbox - in Tkinter

Good morning, I have a question about the listbox in tkinter. My code is working fine, there are only two things wrong and I can not fix it. First that when I click the Delete button, the program deletes only on time, when I close and reop...
asked by 24.12.2018 / 15:56
0
answers

Memory Error in Python

I'm tempted to days solving this problem and I can not, my scripts work on several machines with python, but on the server I need to run the application and presents the error, I've already left a memory test running for three days and the memor...
asked by 01.10.2018 / 22:35
0
answers

BCG graph in Python. [closed]

Friends, is there any way to make a chart as below using Python / Matplotolib? Thank you in advance for your help. I notice that I did a lot of research on the subject, but I'm finding it difficult, especially in the insertion of 2 axes (x...
asked by 20.09.2018 / 19:27
0
answers

Screen Call Bug

Hello! I created a function that calls a screen (urban) when the trigger (Trigger) is triggered, but when the function is executed it automatically closes the screen that was opened (I wonder why this happens, if it is just a or if it terminates...
asked by 25.09.2018 / 05:53
2
answers

Comparison of lowest value in list

My problem seems to be simple but it's bugging my head, lol, there it goes: When I compare my Values list to find the smallest value, it always returns 0, what happens to it? Follow the code below. obs: disregard var tel_maior and minor....
asked by 12.10.2018 / 04:46
1
answer

Interrupt a specific Thread

How do I stop a specific thread? for example: from _thread import * from time import sleep result = 0 def soma(nome, numero, delay): global result while True: result += numero print('{}: {} '.format(nome, result)) sleep(delay) st...
asked by 14.10.2018 / 17:56