Multiline strings


  • We would like to print the number one under the other


examples/strings/multiline_string.py

text = "Joe:   23\nJane:   7 \nJacqueline  19\n"

print(text)
Joe:   23
Jane:   7 
Jacqueline  19