Correcting the mistakes

Report a typo

Take a look at the following code. Did we declare all variables correctly, according to Python's syntax? Try to fix all mistakes, so that SyntaxError will not be raised during the initialization of these variables.

Tip: You should change or add only those quotes that enclose the whole string. Do NOT change the quotes within the string, e.g. don't change the quotes of "double quotes".

Write a program in Python 3
hope = "I hope this is actually going to work'
doubt = 'Do I need to double check all lines?'
suggestion = "What if I write it in "double quotes"?
___

Create a free account to access the full topic