㈠ python2 元組和列表組合輸出 tuple =(1,2) list =[3] print tuple+list 輸出報錯 有點不懂 為什麼
不同類型的計算一般都不行,建議轉換類型:
>>>a=(1,2)
>>>b=[3]
>>>list(a)+b
[1,2,3]
>>>a+tuple(b)
(1,2,3)
㈡ python怎樣把列表中的字元串變成元組
list_in=['1 2 ','4 7 ']
list_out=[tuple(i.strip().split())foriinlist_in]
㈢ Python 字典(Dict)列表轉為元組(Tuple)列表
[(x['id'],x['sequence'],x['name'],x['parent_id'][1])forxina]
㈣ Python列表,元組,集合,字典的區別和相互轉
列表、元組、集合、字典相互轉換
一、列表元組轉其他
1、列表轉集合(去重)
list1 = [6, 7, 7, 8, 8, 9]
set(list1)
# {6, 7, 8, 9}
2、兩個列表轉字典
list1 = ['key1','key2','key3']
list2 = ['1','2','3']
dict(zip(list1,list2))
# {'key1': '1', 'key2': '2', 'key3': '3'}
3、嵌套列表轉字典
list3 = [['key1','value1'],['key2','value2'],['key3','value3']]
dict(list3)
# {'key1': 'value1', 'key2': 'value2', 'key3': 'value3'}
4、列表、元組轉字元串
list2 = ['a', 'a', 'b']
''.join(list2)
# 'aab'
tup1 = ('a', 'a', 'b')
''.join(tup1)
# 'aab'
二、字典轉其他
1、 字典轉換為字元串
dic1 = {'a':1,'b':2}
str(dic1)
# "{'a': 1, 'b': 2}"
2、字典key和value互轉
dic2 = {'a': 1, 'b': 2, 'c': 3}
{value:key for key, value in a_dict.items()}
# {1: 'a', 2: 'b', 3: 'c'}
三、字元串轉其他
1、字元串轉列表
s = 'aabbcc'
list(s)
# ['a', 'a', 'b', 'b', 'c', 'c']
2、字元串轉元組
tuple(s)
# ('a', 'a', 'b', 'b', 'c', 'c')
3、 字元串轉集合
set(s)
# {'a', 'b', 'c'}
4、字元串轉字典
dic2 = eval("{'name':'ljq', 'age':24}")
5、切分字元串
a = 'a b c'
a.split(' ')
# ['a', 'b', 'c']