Printing Python strings

Questions:
Print four individual strings that fulfill certain conditions:

  1. Double quotation marks inside the string
  2. An apostrophe inside the string
  3. Multiple lines with whitespace preserved
  4. Coded on multiple lines but gets printed on a single line
Answers:
  1. print('She said "Hello"')
  2. print("I'm good")
  3. print('''Hello
    from
    Python''')
  4. print("This is \
    one-line \
    string")