Answer
120
150
180
Work Step by Step
$Statement:$
Write a program that displays, with ten numbers per line, all the numbers from 100 to 200 that are divisible by 5 or 6, but not both. The numbers are separated by exactly one space
$Code:$
numberPerLine=10
count=0
for a in range(100,200):
$ $ $ $ $ $ $ $ if a%5==0 and a%6==0:
$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ count=count+1
$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ if count%numberPerLine==0:
$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ print(a)
$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ else:
$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ print(a," ")
$Output:$
120
150
180