2010年12月31日 星期五

list轉為string

程式碼


testList=['aa','bb']
s=''
s=''.join(testList)
print s

輸出
'aabb'

沒有留言: