Answer:
name = input("What is your name? ")
print("Your name in all uppercase letters is " + name.upper()
print("Your name in all lowercase letters is " + name.lower()
Step-by-step explanation:
The first line takes in the user input and stores it in the variable name.
The second line concatinates the string with the variable name. Then to turn the string name to upper case i used the .upper() in built python method. and did the same thing with the .lower()