I'm pretty new to python, I'm using version 3.3.3.
Let's say we have this script:
name = "user"
say = input("Say: ")
print (name, "said:",say)
If I run it, the output will be:
Say: mytext
user said: mytext
I wanna know, is there a way to clear/delete the 'Say: mytext'? Just to make it a little bit clearer:
I want:
user said: hi
user said: test
user said: ..
I don't want:
Say: hi
user said: hi
Say: test
user said: test
That's all, thnx in advance:)