Untitled

                Never    
>>> print("Hello world")
Hello world
>>> 42+3
45
>>> '42'+3
Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    '42'+3
TypeError: can only concatenate str (not "int") to str

Raw Text