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?
|
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? |
|||
|
|
|
Use
On Python 3 series, use, |
|||||||
|
|
This is the simplest way:
Note that the
If you're using Python 3 (it sounds like you are), use |
||||
|
|
|
You can use:
Where the string 'Please enter a value:' would be your message, and foo would be your variables. |
|||||||||
|