zoukankan      html  css  js  c++  java
  • python文本 单独处理每个字符的方法汇总

    python文本 单独处理字符串每个字符的方法汇总

    场景:

    用每次处理一个字符的方式处理字符串

    方法:

    1.使用liststr

      >>> a='abcdefg' 
     
    >>>
    list(a) 
      [
    'a', 'b', 'c', 'd', 'e', 'f', 'g'

     
    >>>
    aList=list(a) 
     
    >>> for item in aList:
     
          print(item)
    #
    这里可以加入其他的操作,我们这里只是单纯使用print 

       
           
     
     
     
     
     
     
     
     
    >>>  

    2.使用for遍历字符串


     
    >>> a='abcdefg' 
     
    >>>
    for item in a : 
          print(item)
    #
    这里可以加入其他的操作,我们这里只是单纯使用print 

       
           
     
     
     
     
     
     
     
     
    >>>  

    3.使用for解析字符串到list里面

      >>> a='abcdefg' 
     
    >>>
    result=[item for item in a] 
     
    >>>
    result 
      [
    'a', 'b', 'c', 'd', 'e', 'f', 'g'

     
    >>>  

  • 相关阅读:
    2019/10/9 CSP-S 模拟测
    简单的面向对象
    魔术变量
    函数
    全局变量
    超级全局变量
    for循环
    while循环
    php数组排序
    python打造XslGenerator
  • 原文地址:https://www.cnblogs.com/quanweiru/p/8358901.html
Copyright © 2011-2022 走看看