• Python list 与 str 互转


    • str 转list

    str转list有两种方法,一种是list()函数,一种是split()方法 ,list()会把字符串的每一个字符分开,而split只是根据条件切分字符串成为列表.

    >>> str1="你好 hello world"
    >>> list(str1)
    ['', '', ' ', 'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd']
    >>>
    >>> str1.split(" ")
    ['你好', 'hello', 'world']
    >>> str2 ="你,好,hello,world"
    >>> str2.split("")
    ['', '', 'hello', 'world']
    >>> str2.split(" ")
    ['你,好,hello,world']
    >>>
    • list 转 str
    >>> ll = ["你好","hello","world"]
    >>> list_str1="".join(ll)
    >>> print(list_str1)
    你好helloworld
    >>> list_str1
    '你好helloworld'
    >>>
    >>> list_str2 = ",".join(ll)
    >>> list_str2
    '你好,hello,world'
    >>>
    >>> for i in ll:
    ...   print(i)
    ...
    你好
    hello
    world
    >>>
    • list(str)转list(int)

    >>> ll_int=['1','2','3','4','5']
    >>> ll_int = list(map(int,ll_int))
    >>> ll_int
    [1, 2, 3, 4, 5]
    • list(int)转list(str)

    >>> ll_str=[1,2,3,4,5]
    >>> ll_str=list(map(str,ll_str))
    >>> ll_str
    ['1', '2', '3', '4', '5']
    >>>
    • list(int)转str

    >>> ll_str=[1,2,3,4,5]
    >>> ll_str =",".join(list(map(str,ll_str)))
    >>> ll_str
    '1,2,3,4,5'
    >>> ll_str=[1,2,3,4,5]
    >>> ll_str ="".join(list(map(str,ll_str)))
    >>> ll_str
    '12345'
  • 相关阅读:
    熟悉常用的Linux操作
    Hadoop综合大作业
    理解MapReduce
    熟悉常用的Hbase操作
    第三章 熟悉常用的HDFS操作
    爬虫大作业
    数据结构化与保存
    爬取校园新闻首页的新闻
    网络爬虫基础练习
    综合练习:词频统计
  • 原文地址:https://www.cnblogs.com/ningy1009/p/15741481.html
Copyright © 2020-2023  润新知