00:01
So we're going to be creating a python program that takes three inputs from the user, and from those three inputs checks to see if they are an equilateral triangle or not.
00:18
So to do this, we need to create three different variables.
00:23
So we can name it a, and we will wrap it in an integer, and a message, and we'll say, enter first side.
00:38
We can put on in your line.
00:41
Now we can copy and paste this two more times and we can change the variable names and address the message.
01:00
The reason why we have the input in between the parentheses is because without this integer here our user input is a string even though we put in a number.
01:14
So to tell python that this is a number, we need to convert it to an integer, which is what this integer, parentheses, does right here...