Valid Python string literals
Question:
Which of the following statements contain valid Python string literals? Select all that are correct:
- string = "1234"
- string = Hello, world.
- string = 1234
- string = "We're #1!"
- string = 'We're #1!'
- string = 'Hello, world.'
Answer:
A, D, F - are the correct answers