lower on Python string

Question:
Which of the following will return 'jean-luc picard'?

  1. Jean-Luc Picard.lower()
  2. "Jean-Luc Picard".lower
  3. "Jean-Luc Picard".lower()
  4. lower("Jean-Luc Picard")
Answer:
C - is the correct answer