Posts by Maydson Araujo • 31 points
2 posts
-
1
votes0
answers246
viewsQ: How to debug python code in Geany IDE?
I am learning python programming and for this I am using the GEANY IDE in Fedora 24. I’m loving using it, but I can’t debug my code. I’ve already installed the debugging plugin. Would anyone know…
-
2
votes1
answer783
viewsQ: What is the problem with this code that takes the highest and lowest value?
I want to display the sum of the numbers typed as well as the largest and smallest number typed, only with while, if and else: contador = 1 maior = 0 menor = 0 S = 0 # 1º NÚMERO A SER SOMADO while…