#Write a Python program that prints 3 lines of text: Your First name, #Your Last name, and Your major, using THREE print statements print("Yana") print("Kortsarts") print("CS") #Write a Python program that prints 3 lines of text: Your First name, #Your Last name, and Your major, using \n print("Yana\nKortsarts\nCS") #Write a Python program that prints 3 lines of text: Your First name, #Your Last name, and Your major, using triple quotes (""") print("""Yana Kortsarts CS""") #Write a Python program that prints the following text: I use Social #Media: "Facebook" and "Twitter" using single quotes as start and end print('I use Social Media: "Facebook" and "Twitter"') #Write a Python program that prints the following text: I use Social #Media: "Facebook" and "Twitter" using triple quotes as start and end print("""I use Social Media: "Facebook" and "Twitter" """) #Write a Python program that prints the following text: I don't know #"Python" #Solution 1: print("""I don't know "Python" """) #Solution 2: print("I don't know \"Python\" ") #Solution 3: print('I don\'t know "Python"')