>>> import sys
>>> sys.stdout.write("Hello")
Hello5
>>> sys.stdout.write("My name is something")
My name is something20
>>>
As you see on the codes above, the outputs with the length of the string. Wondering why? Why this method display the length? Is there something special that I missed?