当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Numpy expandtabs()用法及代码示例


借助numpy.char.expandtabs()方法,我们可以在单个语句中使用numpy方法扩展选项卡。

用法: numpy.char.expandtabs()

返回:返回具有扩展选项卡的字符串数组。


范例1:

在这个例子中,我们可以通过使用numpy.char.expandtabs()方法,我们可以使用numpy来获取展开的标签页。

# import numpy 
import numpy as np 
  
# using numpy.char.expandtabs() method 
gfg = np.char.expandtabs(['Geeks\tFor\tGeeks'], 10) 
  
print(gfg)

输出:

[‘Geeks For Geeks’]

范例2:

# import numpy 
import numpy as np 
  
# using numpy.char.expandtabs() method 
gfg = np.char.expandtabs(['G\tF\tG', 'Jitender\tKumar'], 20) 
  
print(gfg)

输出:

[‘G F G’ ‘Jitender Kumar’]



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Numpy expandtabs() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。