This question reads no input. Assign each of the four strings below, exactly as written, to the variable named next to it. Every target is shown in code formatting, and the characters inside it are the literal characters the string must contain - quotes and backslashes included. You will need escape sequences (\', \\, ...) or a well-chosen pair of quotes to get them past the Python parser.
output1 -> A single quote ' and a double quote "output2 -> A forward slash / and a backward slash \output3 -> Three single quotes ''' and three double quotes """output4 -> Double forward slash // and Double backward slash \\There is no leading or trailing whitespace in any of them.
The input is read for you. Assign the answers to output1, output2, output3, output4.
You do not need to print anything — the values you assign to those names are what gets checked, in that order.
Input
Output
'A single quote \' and a double quote "'
'A forward slash / and a backward slash \\'
'Three single quotes \'\'\' and three double quotes """'
'Double forward slash // and Double backward slash \\\\'