# 0102.py x=2; y=3; r=1.5 print (x,y) # 2 3 print ("Il raggio e'",r,'.') # Il raggio e' 1.5 . print ("Il raggio e' ",r,'.',sep='') # Il raggio e' 1.5. for x in range(6): print(x,end=' ') print('\nO.K.') # 0 1 2 3 4 5 # O.K. ####################################### print (*range(6)) # 0 1 2 3 4 5 print (*range(6),sep='-') # 0-1-2-3-4-5