网络编程
位置:首页>> 网络编程>> Python编程>> python实现将list拼接为一个字符串

python实现将list拼接为一个字符串

作者:测试开发小白变怪兽  发布时间:2022-10-27 05:50:06 

标签:python,list,拼接,字符串

将list拼接为一个字符串

在 python 中如果想将 list 拼接为一个字符串,可使用 join() 方法。

join() 方法描述

将序列(列表或元组)中的元素以指定的字符连接成一个新的字符串。

语法

str.join(sequence)

  • str:指定的字符

  • sequence:待连接的元素序列

返回值为通过指定字符连接序列中的元素后生成的新字符串。

举例

>>> str = ' '
>>> seq = ['I','am','superYujx']
>>> print(str.join(seq))

I am superYujx    # 输出结果

>>> str = '_'
>>> seq = ('I','am','superYujx')
>>> print(str.join(seq))

I_am_superYujx    # 输出结果

Python两个list一对一拼接

'''
实现两个list元素1对1拼接
实现结果:1-8-314,99-2-6332
'''
def main():
   list1 = ['0108', '9902', '207']
   list2 = ['314', '6332', '0305']
   list4 = []
   for i in range(0, len(list1)):  #len(list1)获取列表长度
       list1_len1 = len(list1[i])  #元素长度
       if list1_len1 == 4:
           l1_build = list1[i][:2].lstrip("0")  #去除前面的0
           l1_unit = list1[i][3]
       else:
           l1_build = list1[i][:1]
           l1_unit = list1[i][2]
       l2_room = list2[i]
       # list3 = [l1_build + '-' + l1_unit + '-' + l2_room]
       # list4.append(list3[0])
       list3 = l1_build + '-' + l1_unit + '-' + l2_room
       print("list3:", list3, end=",")
       list4.append(list3)
   print('\n')
   print("list4:", list4)

if __name__=="__main__":
   main()

运行结果:

list3: 1-8-314,list3: 99-2-6332,list3: 2-7-0305,
 
list4: ['1-8-314', '99-2-6332', '2-7-0305']

来源:https://blog.csdn.net/yu97271486/article/details/105996934

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com