s_n = ("Bob: Hello Sandy: How are you? Bob: Confused by a python problem"
print(s_n)
i want to make this string in multiple lines without using "\n".
Output to be : Bob:
Hello Sandy:
How are you? ...etc
s_n = ("""Bob: Hello
Sandy: How are you? Bob: Confused by a python problem""""
print(s_n)
Output: Bob: Hello Sandy: How are you? Bob: confused by a python problem