Here is a simplified version of the code I am trying to run:
print "My name is \033[1;34m%s\033[1;m" % name
However, when I try to run this, it prints
My name is [1;34mBob[1;m
It appears that the backslash only escapes the 0 instead of escaping the 033. How do I fix this problem without having to download an external module? Thanks!