Ask Question
2 December, 16:48

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. 2 December, 19:37
    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?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers