平時python輸出list字串時,會自動加上引號和中括號。
比如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輸出list字串時,會自動加上引號和中括號。比如str hello world str hello world 方法1 可以用join方法 print join str hello world其中 python join 方法用於將序列中的元素以指定的字元連線生成乙個新的字串。比如 ...
Python輸出列表 List 不帶中括號和引號
正常python輸出列表list時,會自動加上中括號和引號。例如 list1 a b c d list1 a b c d 解決方法一 使用join print join list1 a b c dpython join 方法用於將序列中的元素以指定的字元連線生成乙個新的字串。list1 a b c ...
輸出列表中元素的方法
今天看了的博文,受益良多 以下是我根據 一文總結 最簡單的方法 list1 5,8,hello a print list1 5,8,hello a 對列表進行解包 list1 5,8,hello a a,b,c,d list1 a,b,c,d 5,8,hello a 用列表名索引 list1 5,8...