📜  Python| Numpy expandtabs() 方法

📅  最后修改于: 2022-05-13 01:55:32.027000             🧑  作者: Mango

Python| Numpy expandtabs() 方法

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

示例 #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)

输出 :

示例 #2:

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

输出 :