Generation

generate functionThu, 27 Apr 2023

def es_bisiesto(year): if year % 4 == 0: if year % 100 == 0: if year % 400 == 0: return True else: return False else: return True else: return False

Want to kickstart your project?Use the new AI Studio to create your code