Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var message1 = """
- This string will appear
- on separate lines in
- the playground console.
- """
- var sep = "***"
- var message2 = """
- This string will NOT appear \
- on separate lines in \
- the playground console.
- """
- print(message1)
- print(sep)
- print(message2)
Advertisement
Add Comment
Please, Sign In to add comment