0
How can i get output like this in python?
/---------\ / \ \ / \--------/
2 Answers
+ 1
You'll have to use escape characters.
+ 1
print ('''
/---------\\
/ \\
\\ /
\\--------/
''')
/---------\ / \ \ / \--------/