(PYTHON) In Python, How do I use function and strings to do the…

Question Answered step-by-step (PYTHON) In Python, How do I use function and strings to do the… (PYTHON) In Python, How do I use function and strings to do the task below for formatting mailing labels with the Main function? My Code: # getting the first name from userfirst_name = input(“Enter first name: “)# getting the middle name from usermiddle_name = input(“Enter middle name: “)# getting the last name from userlast_name = input(“Enter last name: “)# getting the street address from userstreet_address = input(“Enter your street address: “)# getting city from usercity = input(“Enter your city: “)# getting state from userstate = input(“Enter your state: “)# getting zip_code from userzip_code = input(“Enter your zip code: “)# formatting the labellabel = first_name + ” ” + middle_name + ” ” + last_name + “n” + street_address + “n” + city + “, ” + state + “, ” + zip_code# printing the labelprint(label)                                       Computer Science Engineering & Technology Python Programming ITEC MISC Share QuestionEmailCopy link Comments (0)