Look at the code in the code editor. There are errors on all 5 lines of code. Fix the code so that it runs without errors.
Try to run the code and debug each line using the error messages and feedback.
-----------------------------------------------------------------------------------------
line 3
print(Notes from Day 1")
^
SyntaxError: unterminated string literal (detected at line 3)
Solução: inserir aspas duplas antes da palavra 'Notes' dentro dos parenteses
line 4
print("The print statement is used to output strings")
IndentationError: unexpected indent
Solução: remover espaço antes de print
line 5
print("Strings are strings of characters"
^
SyntaxError: '(' was never closed
Solução: adicionar um parentese ao final da instrução da linha 5
line 6, in
priint("String Concatenation is done with the + sign")
^^^^^^
NameError: name 'priint' is not defined. Did you mean: 'print'?
Solução: ajustar o nome da função print
line 7
print(("New lines can be created with a \ and the letter n")
^
SyntaxError: '(' was never closed
Solução: remover um dos parenteses 'adicionais'
SyntaxWarning: "\ " is an invalid escape sequence. Such sequences will not work in the future. Did you mean "\\ "? A raw string is also an option.
print(("New lines can be created with a \ and the letter n")
Solução: mudei o caracter '\' para o nome em inglês de contrabarra: backslash.
ps: Mesmo que aparentemente este, não tenha efeito na efetividade do código.