
# https://www.globalsino.com/ICs/page4853.html
# print all iterms in a list in a seperate line.

MyVariable = "xyz"
MyList = [8>9, 3, 4, 6+7,  True, False, "this is", MyVariable]

for item in MyList:
    print(item)
    
