Posts by Caio Roberto • 29 points
6 posts
-
0
votes1
answer208
viewsQ: Characters repeating in String discovery [Python]
The goal here is to discover the passwords, in trial and error even, and ta everything going well while the letters, but when they reach the numbers, they repeat themselves for a reason I really…
pythonasked Caio Roberto 29 -
0
votes2
answers968
viewsA: Python 3.x Show typed data in an Entry on a Label only after pressing a button
Changing at least, what you need to do is change this part: # Nome do pet digitado na tela lbl2 = Label(janela, text="") lbl2.pack(anchor=NW) Note that if you remove the part of the textvariable,…
-
0
votes0
answers71
viewsQ: Tkinter==>Label/Msg present only 1 item in the list. How to resolve?
Well, the goal is to make, on the same label or msg, all the items on the list appear. I’m not very experienced at Tkinter, so I don’t know if there’s a limit to that. Follow part of the code below.…
-
1
votes1
answer2070
viewsQ: Program closing immediately after opening(Post-compiled)
I’m starting to study Tkinter and compilation, and I have a basic Python notion, and I’m having some problems. Here’s an example of a basic program that, after compiling, the executable just quickly…
-
0
votes1
answer76
viewsQ: My code Builds always incorporate Python 2.7 instead of 3.6, how to resolve?
When I will create executables of the programs I have suffered from it,and if anyone knows how to help, I thank.Follow the command line that I usually use to build at the prompt. python'filename'.…
-
1
votes4
answers846
viewsQ: How to find numbers larger than X in a list
As an example, this code there N=[1,2,3,4,5] B= #quantidade de números maiores que 2 print(B) 'B' would be the number of numbers greater than 2 present in the list, for example.…
pythonasked Caio Roberto 29