Posts by Diogo • 19 points
1 post
-
0
votes1
answer1861
viewsQ: How to solve the None problem in PYTHON
For example I have this program: def bissexto (inicio,fim): """Diz quais são os anos bissextos""" for i in range (inicio,fim+1): if(i %4==0 and i %100!=0) or i %400==0: print(i,"- Bissexto") else:…