jetbrains-academy / introduction_to_python

Introduction to Python course
MIT License
42 stars 26 forks source link

No clues for the answer Strings / Character Escaping #211

Closed edutools-service closed 1 year ago

edutools-service commented 1 year ago

How in the world is someone supposed to come up with the answer 'The name of this ice cream is "Sweet\'n\'Tasty"' from this problem?

There are no clues, nothing that would lead to this answer.

The problem:

dont_worry = "Don't worry about apostrophes"

print(dont_worry)

print("\"Sweet\" is an ice-cream")

print('???')

sofiiako commented 1 year ago

Hi! Please read the task description, it describes the problem