标签: python
我试图按如下方式将三个变量分开:
single_element = str(pos) + "\t" + str(ref) + "\t" +str(alt)
print(single_element)获得的输出是:
print(single_element)
pos\tref\talt
但我想要的是:
pos ref alt
答案 0 :(得分:0)
您可以使用expandtabs指定tabstop
expandtabs
print(single_element.expandtabs(8))