python字符串,元組,列表,字典互相轉換直接給大家上代碼實例
創新互聯公司專業提供成都主機托管四川主機托管成都服務器托管四川服務器托管,支持按月付款!我們的承諾:貴族品質、平民價格,機房位于中國電信/網通/移動機房,綿陽主機托管服務有保障!#-*-coding:utf-8-*- #1、字典 dict = {'name': 'Zara', 'age': 7, 'class': 'First'} #字典轉為字符串,返回:<type 'str'> {'age': 7, 'name': 'Zara', 'class': 'First'} print type(str(dict)), str(dict) #字典可以轉為元組,返回:('age', 'name', 'class') print tuple(dict) #字典可以轉為元組,返回:(7, 'Zara', 'First') print tuple(dict.values()) #字典轉為列表,返回:['age', 'name', 'class'] print list(dict) #字典轉為列表 print dict.values #2、元組 tup=(1, 2, 3, 4, 5) #元組轉為字符串,返回:(1, 2, 3, 4, 5) print tup.__str__() #元組轉為列表,返回:[1, 2, 3, 4, 5] print list(tup) #元組不可以轉為字典 #3、列表 nums=[1, 3, 5, 7, 8, 13, 20]; #列表轉為字符串,返回:[1, 3, 5, 7, 8, 13, 20] print str(nums) #列表轉為元組,返回:(1, 3, 5, 7, 8, 13, 20) print tuple(nums) #列表不可以轉為字典 #4、字符串 #字符串轉為元組,返回:(1, 2, 3) print tuple(eval("(1,2,3)")) #字符串轉為列表,返回:[1, 2, 3] print list(eval("(1,2,3)")) #字符串轉為字典,返回:<type 'dict'> print type(eval("{'name':'ljq', 'age':24}"))
新聞名稱:python字符串,元組,列表,字典互轉代碼實例詳解-創新互聯
標題URL:http://m.newbst.com/article38/dpgdpp.html
成都網站建設公司_創新互聯,為您提供微信公眾號、網站改版、Google、網頁設計公司、外貿網站建設、企業網站制作
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯