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')

Questions about programming?Chat with your personal AI assistant