EDIT - The problem that I was having was with the library that i was trying to use, colorama, I probably should have been more specific.
I want to be able to print a string character-by-character with an extrememly short pause inbetween each character for effect but my code ignores control characters and just prints the individual characters. Not sure how to counter this.
Here is the part of the code that does it:
import time, sys
def slowprint(message, speed):
for x in range(0, len(message)):
if x == len(message)-1:
print(message[x])
else:
print(message[x], end="")
sys.stdout.flush()
time.sleep(speed)
I'm on python 3.2.