Ask Question

for number in range (1,51) : if number % 3 = = 0 and number % 5 = = 0: print ('XY') elif number % 5 = = 0: print ('X') elif number % 3 = = 0: print ('Y')

+1
Answers (1)
  1. 18 January, 23:24
    0
    Output of the given code is:

    Y

    X

    Y

    Y

    X

    Y

    XY

    Y

    X

    Y

    Y

    X

    Y

    XY

    Y

    X

    Y

    Y

    X

    Y

    XY

    Y

    X

    Explanation:

    In the for loop variable "number" will iterate from 1 to 150 (inclusive).

    in the "if" condition it is checking that the number is divisible by 3 and 5 both if the number is divisible by both 3 & 5 then it will print XY as output.

    In the first "elif", if the number is divisible by 5 only then it will print X

    as output. And in the last "elif", if number is divisible by 3 only then it will

    print Y as output. Nothing will be printed if all three conditions are FALSE.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “for number in range (1,51) : if number % 3 = = 0 and number % 5 = = 0: print ('XY') elif number % 5 = = 0: print ('X') elif number % 3 = = ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers