Posts by Cesar Brito • 51 points
4 posts
-
0
votes1
answer1670
viewsA: Character to binary conversion
I came up with a solution for this conversion case. In this case, I created two functions with repeat structures to iterate each character. The first converts from binary to string, the second from…
python-3.xanswered Cesar Brito 51 -
-1
votes1
answer1670
viewsQ: Character to binary conversion
I’m developing a little python application that needs character to binary conversion. However, I want to know if there is a specific function for this type of task.
python-3.xasked Cesar Brito 51 -
3
votes1
answer421
viewsQ: Trigger an event after two clicks on button
I am developing a small interface in Tkinter, but I have the following question: Is there a mouse event that allows an action to be executed after two clicks consecutive on a button?…
-
2
votes3
answers178
viewsA: Program in C : A certain doubt
Another very efficient solution is to use For loops with selection structures applied inside the loop, which also allows the code to be smaller and more readable. At the end of the code I used the…