# 1003.py if 3<5<9: print 'o.k.' # output: o.k. a=b=c=4 for x in [a,b,c]: print x, print # output: 4 4 4