Generation

generate functionMon, 24 Jul 2023

divisible para 5 y 7

def divisible(a, b): if a % 5 == 0 and b % 7 == 0: print('True') else: print('False')

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