Posts by Paulo Henrique Cardoso • 66 points
2 posts
-
1
votes3
answers1598
viewsA: Countdown by using Tkinter
There is another solution, if you want to make more than one count during the implementation of the program (in the solution proposed by Fabiano the "Entry" will be read only once): from tkinter…
-
4
votes1
answer1093
viewsA: How does dynamic typing work in Python 3.x?
In python to declare a variable it is not necessary to declare its type, only its value which is called dynamic typing, other than java or C, which have static typing. Also python has strong typing,…