#CS-6207
Awesome StudentQuestion • Programming Languages with Compiler
Which if-else statement will not produce this output?is divisible by 3
Answer
num = 16 if num % 3 = 0: print("is divisible by 3") else: print("is not divisible by 3")
num = 16 if num % 3 = 0: print("is divisible by 3") else: print("is not divisible by 3")