2010年6月9日 星期三

Python:創造一個 tuple

 
tuple 是一個不可變的常數,過去一直以為要直接寫入的。
事實上,它還有其它寫入的方法。
 
>>> tupleA = (1, 2, 3)
>>> tupleB = (7, 7, 8, 8)
 
>>> mm=tupleB + tupleA
>>> mm
(7, 7, 8, 8, 1, 2, 3)
 
>>> hh='hk'
>>> mm='mo'
>>> tw='tw'
>>> ch='china'

>>> tupleC=(hh,mm,tw,ch)
>>> tupleC
('hk', 'mo', 'tw', 'china')

>>> tupleD=tupleA+tupleB+tupleC
>>> tupleD
(1, 2, 3, 7, 7, 8, 8, 'hk', 'mo', 'tw', 'china')
  
 
 

沒有留言: