在第二行中将文本行与用户输入合并

时间:2019-07-11 02:14:31

标签: python

如何使用户输入的内容与先前的文字显示在同一行?

print('Enter the rainfall amount for month', months, end='')
monthly_rainfall=float(input(': '))

所需结果:

Enter the rainfall amount for month 1: 1

实际结果:

Enter the rainfall amount for month 1
: 1

1 个答案:

答案 0 :(得分:0)

尝试改用monthly_rainfall = float(input('Enter rainfall amount for month {0}: '.format(months))) 。这应该给您一个更简单的解决方案。

{{1}}