I want python to take in input then print out the input with added characters in front without outputting the original input.
Example:
foo = input("")
print("Me: " + foo)
should output
Me: foo
instead of
foo
Me: foo
I can't just do input("Foo: ")
as there are other threads outputting to the console and they mess up the formatting.