00:01
Hello student here we have to display the name as in the given format.
00:06
So here name has a three part full name, full name, first name, middle name and the last name.
00:13
So last name will come first after this comma and after this dot for after the first name and after the middle name.
00:19
So in this way we have to print the output.
00:21
So here input the full name.
00:23
So full name from the user will be taken enter the name.
00:26
So here first name, middle name and last name are all part of the will be entered from the user in the input box.
00:33
So it's a user prompt here split the full name into the three part.
00:37
Now we have to work on three parts.
00:40
That's why i split these three parts with the help of a split function here.
00:46
So it's working on the full underscore name variable and here i have taken another variable name underscore part.
00:52
So if this will this part will consist of three parts.
00:55
Check the number of the name parts.
00:57
If length of name underscore parts is equal to three means our name is having the three things means first name, middle name and last name means three part then first name, middle name and the last name will be equal to name underscore part...