Posts by Lucas Aquino • 32 points
5 posts
-
0
votes1
answer110
viewsA: How to check if an Input Text is "Empty" or not in pySimpleGUI?
Hello @Elvis, all right ? In Pysimplegui we do not yet have a workable solution through the Framework, but you can use conditions to do this a base example and that can not be improved would use as…
pythonanswered Lucas Aquino 32 -
-2
votes1
answer394
viewsA: How to put an image in the background using the "Pysimplegui" library?
good afternoon!! Pysimplegui does not yet have the Background to Window function, we have to wait for the update, for interface beyond those that see by default I can recommend you to create your…
pythonanswered Lucas Aquino 32 -
-1
votes1
answer50
viewsA: Is there something wrong with my code?
Very cool code, to improve rather than use print('') use \n to jump line if command == '.cube': while command2 == '.denovo': print("Insert an integer to find the cube of it!") num_cube =…
pythonanswered Lucas Aquino 32 -
-1
votes3
answers182
viewsA: Bug when trying to use Pysimplegui
By default when you receive the Pysimplegui Input it comes with 'str' you have to turn into 'int' as follows. _pergunta_ = self.values['Pergunta'] _pergunta_ = int(_pergunta_)…
-
0
votes1
answer435
viewsA: Product registration using Pysimplegui and Python
For this to happen you have to set the variable of the Key, as follows: -CATEG- = values['-CATEG-'] To transform the '-CATEG-' value into 'NAME' _CATEG_ = values['-CATEG-'] _NOME_ =…
python-3.xanswered Lucas Aquino 32