溫馨提示×

溫馨提示×

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

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

python3中字符串、列表、元組相互轉(zhuǎn)換方法及使用join()函數(shù)的示例分析

發(fā)布時(shí)間:2021-08-12 11:33:12 來源:億速云 閱讀:135 作者:小新 欄目:開發(fā)技術(shù)

小編給大家分享一下python3中字符串、列表、元組相互轉(zhuǎn)換方法及使用join()函數(shù)的示例分析,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

在抓取網(wǎng)絡(luò)數(shù)據(jù)的時(shí)候,有時(shí)會用正則對結(jié)構(gòu)化的數(shù)據(jù)進(jìn)行提取,比如 href="https://www.1234.com"等。python的re模塊的findall()函數(shù)會返回一個(gè)所有匹配到的內(nèi)容的列表,在將數(shù)據(jù)存入數(shù)據(jù)庫時(shí),列表數(shù)據(jù)類型是不被允許的,而是需要將其轉(zhuǎn)換為元組形式。下面看下,str/list/tuple三者之間怎么相互轉(zhuǎn)換。

class forDatas:
  def __init__(self):
    pass
  def str_list_tuple(self):
    s = 'abcde12345'
    print('s:', s, type(s))
    # str to list
    l = list(s)
    print('l:', l, type(l))
    # str to tuple
    t = tuple(s)
    print('t:', t, type(t))
    # str轉(zhuǎn)化為list/tuple,直接進(jìn)行轉(zhuǎn)換即可
    # 由list/tuple轉(zhuǎn)換為str,則需要借助join()函數(shù)來實(shí)現(xiàn)
    # list to str
    s1 = ''.join(l)
    print('s1:', s1, type(s1))
    # tuple to str
    s2 = ''.join(t)
    print('s2:', s2, type(s2))

str轉(zhuǎn)化為list/tuple,直接進(jìn)行轉(zhuǎn)換即可。而由list/tuple轉(zhuǎn)換為str,則需要借助join()函數(shù)來實(shí)現(xiàn)。join()函數(shù)是這樣描述的:

 """
    S.join(iterable) -> str
    Return a string which is the concatenation of the strings in the
    iterable. The separator between elements is S.
    """

join()函數(shù)使用時(shí),傳入一個(gè)可迭代對象,返回一個(gè)可迭代的字符串,該字符串元素之間的分隔符是“S”。

傳入一個(gè)可迭代對象,可以使list,tuple,也可以是str。

s = 'asdf1234'
sss = '@'.join(s)
print(type(sss), sss)

看完了這篇文章,相信你對“python3中字符串、列表、元組相互轉(zhuǎn)換方法及使用join()函數(shù)的示例分析”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI