gpt4 book ai didi

python - 如何在python中的输入字段后放置文本?

转载 作者:太空宇宙 更新时间:2023-11-03 12:05:11 25 4
gpt4 key购买 nike

在 python 中,如果我想让某人以美元输入贷款金额,我可以编写如下代码:

# Loan amount
L = float(input("Enter the loan amount: $"))

但是,如果我想要,比如说利率,它是一个百分比。如果我编码:

# Interest rate
I = float(input("Enter the interest rate: "))

我怎样才能让百分号 % 在他们输入的内容后显示?

最佳答案

您需要的是控制终端的光标。

用户输入并按下回车后,光标移动到下一行。

您需要将光标向上移动一行,然后将其移动到该行的末尾,打印 % 然后将光标移回新行。

您可以使用终端的转义序列来做到这一点。

这个库可以让你更容易地进行光标移动

http://code.activestate.com/recipes/475116-using-terminfo-for-portable-color-output-cursor-co/

关于python - 如何在python中的输入字段后放置文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34408264/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com