Given the following code, what will the output be when the i…
Given the following code, what will the output be when the input is “Cat”? pet = input(“Enter a pet: “)print(“I”, “have”, “a”, pet, sep=”_”, end=”!”)print(“How”, “about”, “you”, sep=”*”)