平常python輸出list字串時,會自動加上引號和中括號。
例如(推薦學習:Python影片教學)
str=['hello','world'] >>> str ['hello', 'world']
方法1
可以用join方法:
>>> print " ".join(str) hello world
其中:Python join() 方法用於將序列中的元素以指定的字元連接產生一個新的字串。
例如:
str = "-" seq = ("a", "b", "c") print str.join( seq )
輸出結果:
a-b-c
#方法2:如果list存放的是數字,則:將其轉為int即可。因為原來存放的是string型的
str=['1', '2', '3'] for i in str: int(i) print(i)
更多Python相關技術文章,請造訪Python教學欄位學習!
以上是怎麼去掉資料的方括號的詳細內容。更多資訊請關注PHP中文網其他相關文章!