+ 1
(assignment) """""first line second line""""
2 Answers
+ 1
that is new line (\n)
Fill in the missing part of the output.
>>> """First line
second line"""
'First line
second line'
0
>>> """First line
second line"""
'First line \n second line'