在python中输出期间,按Enter键后光标会自动移动到下一行。 采取以下程序,
n = input()
cost = float(input())
qty = int(input())
输出将是:
product name
12.5
2
但是我希望以这种方式输出,而是使用选项卡。
product name 12.5 2
有没有办法以这种方式格式化 python 输入?
编辑:我不想使用打印格式化输出,我不想在输入数据本身时(即在输入期间(将光标移动到制表符空格。
像这样使用打印函数
print('Something to print', end='t')
或者只是使用这样的东西
print(f'product namett {value1}t {value2}')
简单的方法是使用
print(n, cost, qty, end="t")