gpt4 book ai didi

python - 在 python 中别名 str.join

转载 作者:太空宇宙 更新时间:2023-11-03 15:20:44 24 4
gpt4 key购买 nike

是否可以在 python3 中为 str.join 添加别名?

例如:

a=['a','b','c']
j=str.join
''.j(a)

还能做到

' '.j(a)

使用相同的别名或更通用的别名,以便能够像这样使用它:

string_here.j(iterable here)

最佳答案

不完全符合您想要的语法,但足够接近:

>>> a=['a','b','c']
>>> j=str.join
>>> j('', a)
'abc'
>>> j(' ', a)
'a b c'

str.join 是一个未绑定(bind)的方法。要将其应用于对象,您需要将该对象指定为第一个参数。

关于python - 在 python 中别名 str.join,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15459633/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com