I'm writing a code in Python IDLE 3.6 that prints out a user's name in their own choice of style and colour and everything is working fine apart from this. Somehow it won't print out the three highlighted lines underneath each other and I've tried multiple methods but they all keep ending up with unexpected character after line continuation character. Please help?
if style == ":":
if colour == "Red" or "red":
cat.write(( ":" * (len(name) + 4)), "stderr")
cat.write((":", name, ":"), "stderr")
cat.write((":" * (len(name) + 4)), "stderr")