If I have an easy code like this:
while 1:
text = raw_input()
print 'You have written "%s" text'% (text)
if I start the program and I write "hello" the Output is:
hello
You have written "hello" text
The first "hello" is my input (taken with raw_input but I could use sys.stdin.readline too)
How I can delete the first "hello" (my input) to have an output only like this:
You have written "hello" text