Python| Numpy expandtabs() 方法
借助numpy.char.expandtabs()
方法,我们可以在单个语句中使用 numpy 方法扩展选项卡。
Syntax : numpy.char.expandtabs()
Return : Return the string array having expanded tabs.
示例 #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’]