Python sample question with answer 35

Question:
Which of the following code examples will cause a runtime error when executed?

  1. phrase = "Hello, world"
    print(phrase)
  2. Phrase = "Hello, world"
    print(phrase)
  3. text = "Hello, world"
    print(text)
Answer:
B - is the correct answer