دنبال کننده ها

۱۳۹۶ آبان ۹, سه‌شنبه

Python how to check if it is a leap year with ==int

[ad_1]

 def leapyear(year):
if year/400 == int :
return False
if year/100 == int :
return False
if year/4 == int :
return True


hello I would like to know why my code doesn't work with it == to int because essentially its the same thing as using modulo and == to 0 this is just a question that came to me.



[ad_2]

لینک منبع