python mapjoin函数

Posted 德邦总管

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python mapjoin函数相关的知识,希望对你有一定的参考价值。

map() 会根据提供的函数对指定序列做映射。

第一个参数 function 以参数序列中的每一个元素调用 function 函数,返回包含每次 function 函数返回值的新列表。

map(function, iterable, ...)

其中

  • function -- 函数,有两个参数
  • iterable -- 一个或多个序列
  1.  
    >>>def square(x) : # 计算平方数... return x ** 2...
  2.  
    >>> map(square, [1,2,3,4,5]) # 计算列表各个元素的平方
  3.  
    [1, 4, 9, 16, 25]
  4.  
    >>> map(lambda x: x ** 2, [1, 2, 3, 4, 5]) # 使用 lambda 匿名函数
  5.  
    [1, 4, 9, 16, 25]
  6.  
    # 提供了两个列表,对相同位置的列表数据进行相加
  7.  
    >>> map(lambda x, y: x + y, [1, 3, 5, 7, 9], [2, 4, 6, 8, 10])
  8.  
    [3, 7, 11, 15, 19]

 join() 方法用于将序列中的元素以指定的字符连接生成一个新的字符串。

str.join(sequence)
  1.  
    str = "-";
  2.  
    seq = ("a", "b", "c"); # 字符串序列
  3.  
    print str.join( seq );

split()通过指定分隔符对字符串进行切片,如果参数num 有指定值,则仅分隔 num 个子字符串

str.split(str="", num=string.count(str))

 

  • str -- 分隔符,默认为所有的空字符,包括空格、换行( )、制表符( )等。
  • num -- 分割次数。
  1.  
    str = "this is string example....wow!!!"
  2.  
    print (str.split( ))
  3.  
    print (str.split(‘i‘,1))
  4.  
    print (str.split(‘w‘))
  5.  
     
  6.  
    [‘this‘, ‘is‘, ‘string‘, ‘example....wow!!!‘]
  7.  
    [‘th‘, ‘s is string example....wow!!!‘]
  8.  
    [‘this is string example....‘, ‘o‘, ‘!!!‘]

 

data_4temp1[‘amount2‘] = data_4temp1[‘amount‘].map(lambda x: int(‘‘.join(x[1:].split(‘,‘))))


原文地址:https://blog.csdn.net/abcdrachel/article/details/80520484

以上是关于python mapjoin函数的主要内容,如果未能解决你的问题,请参考以下文章

在 Python 多处理进程中运行较慢的 OpenCV 代码片段

python使用上下文对代码片段进行计时,非装饰器

怎么知道任务开始mapjoin

python 元组有用的函数,方法和片段。

Python代码阅读(第26篇):将列表映射成字典

hive mapjoin