如何在 python 中进行简单的用户输入?

发布于 2024-10-12 09:41:02 字数 182 浏览 3 评论 0原文

我只是在玩输入和变量。我正在尝试运行一个简单的函数:

slope = (y2-y1)/(x2-x1)

我想提示用户输入 y2y1x2x1。最简单、最干净的方法是什么?

I'm just playing with input and variables. I'm trying to run a simple function:

slope = (y2-y1)/(x2-x1)

I'd like to prompt the user to enter y2, y1, x2 and x1. What is the simplest, cleanest way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

若沐 2024-10-19 09:41:02

您可以使用 input() 函数提示用户输入,并且 float 将用户输入从字符串转换为浮点数:

x1 = float(input("x1: "))
y1 = float(input("y1: "))
x2 = float(input("x2: "))
y2 = float(input("y2: "))

如果您使用的是 python 2,请使用 raw_input() 相反。

You can use the input() function to prompt the user for input, and float to convert the user input from a string to a float:

x1 = float(input("x1: "))
y1 = float(input("y1: "))
x2 = float(input("x2: "))
y2 = float(input("y2: "))

If you're using python 2, use raw_input() instead.

看春风乍起 2024-10-19 09:41:02

这是最简单的方法:

 x1 = float(raw_input("Enter x1: "))

请注意,raw_input() 函数返回一个字符串,使用float() 将其转换为浮点数。如果您输入数字以外的内容,则会出现异常:

>>> float(raw_input())
a
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
ValueError: invalid literal for float(): a

如果您使用的是 Python 3(听起来像是),请使用 input 而不是 raw_input

This is the simplest way:

 x1 = float(raw_input("Enter x1: "))

Note that the raw_input() function returns a string, which is converted to a floating point number with float(). If you type something other than a number, you will get an exception:

>>> float(raw_input())
a
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
ValueError: invalid literal for float(): a

If you're using Python 3 (it sounds like you are), use input instead of raw_input.

傲世九天 2024-10-19 09:41:02

您可以使用:

foo=input('Please enter a value:')

其中字符串“请输入一个值:”将是您的消息,而 foo 将是您的变量。

You can use:

foo=input('Please enter a value:')

Where the string 'Please enter a value:' would be your message, and foo would be your variables.

北笙凉宸 2024-10-19 09:41:02

如果用户仅在一行中输入输入,并用空格作为这些输入之间的分隔词,您可以编写:

val1, val2, val3 = raw_input().split(' ')

现在,您可以将其更改为:

val = float(val1)

很棒的技巧是,通过这种方式,您不会浪费空间来创建新的列出并将您的值存储在其中,然后获取它。

If the user is entering the inputs in just one line with space as delimiting word between those inputs, you can write:

val1, val2, val3 = raw_input().split(' ')

Now, you can change it to:

val = float(val1)

The awesome trick is that in this way you don't waste your space creating a new list and storing your values in that and then fetching it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文