00:01
We are going to create a python program that will prompt the user to enter height and assign that number that the user enters to a variable.
00:16
So to get started, we want to first create a height variable.
00:25
This is how you assign a value to a variable.
00:30
So if we think about the height, we can kind of think about how we want to get the input.
00:43
We could get it as a string or we have the user enter 65 inches or 5 foot 3 inches.
00:52
Or we could get an integer and have the user enter their height and their height and inches, so on and forth.
01:07
But i think the best way we can do it is enter, get that input from the user just through a string.
01:19
So enter height, or enter your height.
01:26
This is how we get the input in python.
01:32
Next, we want, if we want to see our input, or see our value of the variable, you can simply print and put the name of a readable in the parentheses...