91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用Python怎么對list、tuple、str和dict進行轉換

發布時間:2021-03-10 14:03:40 來源:億速云 閱讀:216 作者:Leah 欄目:開發技術

使用Python怎么對list、tuple、str和dict進行轉換?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

1、字典(dict)

dict = {‘name': ‘Zara', ‘age': 7, ‘class': ‘First'}

1.1 字典——字符串

返回:

print type(str(dict)), str(dict)

1.2 字典——元組

返回:(‘age', ‘name', ‘class')

print tuple(dict)

1.3 字典——元組

返回:(7, ‘Zara', ‘First')

print tuple(dict.values())

1.4 字典——列表

返回:[‘age', ‘name', ‘class']

print list(dict)

1.5 字典——列表

print dict.values

2、元組

tup=(1, 2, 3, 4, 5)

2.1 元組——字符串

返回:(1, 2, 3, 4, 5)

print tup.__str__()

2.2 元組——列表

返回:[1, 2, 3, 4, 5]

print list(tup)

2.3 元組不可以轉為字典

3、列表

nums=[1, 3, 5, 7, 8, 13, 20];

3.1 列表——字符串

返回:[1, 3, 5, 7, 8, 13, 20]

print str(nums)

3.2 列表——元組

返回:(1, 3, 5, 7, 8, 13, 20)

print tuple(nums)

3.3 列表不可以轉為字典

4、字符串

4.1 字符串——元組

返回:(1, 2, 3)

print tuple(eval("(1,2,3)"))

4.2 字符串——列表

返回:[1, 2, 3]

print list(eval("(1,2,3)"))

4.3 字符串——字典

返回:

print type(eval("{'name':'ljq', 'age':24}"))

補充:python入門之路:一個小錯誤,str變tuple

筆者在編程的時候發現,原先定義的str字符串在傳遞和引用的時候會莫名其妙改變類型,變成tuple。

import random 
class get_Veri(object): 
  def random_color(self):
    random_color=(random.randint(0,255),random.randint(0,255),random.randint(0,255))
    return random_color
 
  def random_num(self):
    random_num = str(random.randint(0, 9))
    return random_num
 
  def random_lowerchr(self):
    random_lowerchar=chr(random.randint(97, 122))
    return random_lowerchar
 
  def random_upperchr(self):
    random_upperchr = chr(random.randint(65, 90))
    return random_upperchr
 
  def random_char(self):
    random_char = random.choice([get_Veri.random_num(self), get_Veri.random_upperchr(self), get_Veri.random_lowerchr(self)])
    print(random_char)
    print(type(random_char))
    return random_char

這里random_char函數輸出一個隨機字符串,可以看到type類型為:

<class 'str'>

在另一個文件中進行引用:

from random_data.py import get_Veri 
 
get_veri=get_Veri()
random_char = get_veri.random_char(),
print(random_char)
print(type(random_char))

發現random_char的type類型已經發生改變:

<class 'tuple'>

關于使用Python怎么對list、tuple、str和dict進行轉換問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

宁城县| 涟水县| 西乌珠穆沁旗| 新邵县| 镇安县| 肇源县| 澄城县| 林芝县| 湘潭市| 上栗县| 阿尔山市| 专栏| 华容县| 顺平县| 佛冈县| 平阴县| 仁布县| 台中县| 会昌县| 长乐市| 梓潼县| 财经| 晋州市| 安庆市| 和政县| 逊克县| 邵武市| 西华县| 灵璧县| 濮阳县| 巴彦淖尔市| 普宁市| 嫩江县| 顺平县| 靖西县| 阳曲县| 疏勒县| 应城市| 政和县| 东光县| 宁津县|