Răspuns:
Sper ca te-am ajutat !
Explicație:
year = int(input("Introdu un an: "))
if (year % 4) == 0:
if (year % 100) == 0:
if (year % 400) == 0:
print("{0} este un an bisect".format(year))
else:
print("{0} nu este un an bisect".format(year))
else:
print("{0} este un an bisect".format(year))
else:
print("{0} nu este un an bisect".format(year))