I am using raw_input("> ") to write something. And after that I am using len() to get the character count.
something = raw_input("> ")
print something
print len(something)
Is it possible to get the character count while writing at the beginning or the end of the text I write? So at the moment when I write A test (6 characters) I would like to see "6" in real time (e.g. at the beginning before the "> "
How can I do this? 
 
     
    