建立列表:
>>> m = ["abba","rolling stones","black sabbath","metallica"]
>>&g print music
輸出:['abba', 'rolling stones', 'black sabbath', 'metallica']
通過join函式通過空格連線列表中的元素:
>>> print ' '.join(music)
返回結果
abba rolling stones black sabbath metallica
使用換行符鏈結列表
>>> print "\n".join(musi程式設計客棧c)
輸出結果
abba
rolling stones
black xzqbxsabbath
meta
使用tab符號連線列表的所有元素
>>> print "\t".join(music)
輸出結果
abba rolling stones black sabbath metallica
本文標題: python中列表元素連線方法join用法例項
本文位址:
Python中列表元素轉為數字的方法
有乙個數字字元的列表 numbers 1 5 10 8 想要把每個元素轉換為數字 numbers 1,5,10,8 用乙個迴圈來解決 new numbers forninnumbers int n numbers new numbers 有沒有更簡單的語句可以做到呢?1.numbers int x ...
Python向列表中插入元素 列表
python列表中的元素種類可以是相同的也可以是不同的,如 num 1 2 3 4 str python 1 中國 nmu 1 2 3 4 str python 1 中國 phone 諾基亞 三星 oppo 華為 print phone 諾基亞 三星 oppo 華為 2 extend 在列表末尾新增...
Python刪除列表元素的方法
列表刪除的方法有del,remove,pop,clear name list tom jerry chris del 刪除目標,可直接刪除列表物件,也可選中下標刪除指定資料 del name list del name list 0 print name list pop 刪除指定下標的資料,如果沒...