# 1110.py # if a=3: print 'o.k.' # ERRORE DI SINTASSI. a=3 # assegnamento. if a==3: print 'o.k.' # output: o.k. if a!=5: print 'o.k.' # output: o.k.