Python Numpy expandtabs()方法
在numpy.char.expandtabs()方法的帮助下,我们可以在单个语句中使用numpy方法扩展标签。
语法: numpy.char.expandtabs()
返回:返回具有扩展标签的字符串数组。
例子#1 :
在这个例子中,我们可以看到,通过使用numpy.char.expandtabs()方法,我们能够通过使用numpy.char.expandtabs()获得扩展标签。
# 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’]