import pandas as pd

# タブ区切りのテキストファイルを読み込み
df = pd.read_csv('input.txt', sep='\t')

# Excelファイルに出力
df.to_excel('output.xlsx', index=False)