00:03
The question here asks us to ask the user to input their name, which would be in any format, i mean in any case, mixed case, whatever.
00:12
So we asked them to input the name, and we save that name in a variable, and then we have to print that name out in all uppercase, and then the same name in all lowercase letters.
00:24
So we'll be using three different functions of the simple python case here and the first one is the input function which is right here so the input function basically takes takes the input after the command is executed right in this case when this when this line runs and in the input function you can also put a string message.
01:27
So that will be the first thing that will be printed on the screen.
01:30
Anything that follows that will be taken as the input to the variable which we can say that name is equal to input of this.
01:36
So an input from execution of this statement will be saved in name.
01:41
So in this case when we do this, when we run this program, at least the first time when it runs, you will see that this will be typed out and it will be waiting for your input...