Educational edition: "Character escaping"
Hello All,
Currently I am doing the PyCharm Introduction from the educational edition. Only I cannot pass the test although I think I have the correct answer.
I have typed the following
Which prints out the assignment. What is going wrong here?
Currently I am doing the PyCharm Introduction from the educational edition. Only I cannot pass the test although I think I have the correct answer.
I have typed the following
dont_worry = "Don't worry about apostrophes"
print(dont_worry)
print("The name of this ice-cream is \"Sweeet\"")
print('The name of this ice-cream is "Sweet\'n\'Tasty"')
Which prints out the assignment. What is going wrong here?
Please sign in to leave a comment.
Here's the input I left in the text box when it finally worked for me:
dont_worry = "Don't worry about apostrophes"
print(dont_worry)
print('The name of this ice-cream is "Sweeet\'n\'Tasty"') <– this line should contain the answer placeholder
Thanks for the reply, although it still did not work for me. I am using Pycharm 1.0.1 and python 3.4.3.
Could you please attach screenshot of this task with filled answer placeholder?