TypeError: unsupported operand type(s) for +: 'User' and 'str' code example
Example: TypeError: unsupported operand type(s) for +: 'int' and 'str'
do not combine int with string !
Example:int + string = error
correct example: int + int = no error
string + string = no error