Unsupported operand type(s) for %: 'NoneType' and 'tuple'

python

Solution

`print` returns `None`, you must format the string before printing it

print("Hi my name is %s, I\'m a %s." % (string_1, string_2))

Problem

I am getting this error: TypeError: unsupported operand type(s) for %: 'NoneType' and 'tuple' What do I need to change to fix this? ``` string_1 = "Sean"; string_2 = "beginner programmer"; print("Hi my name is %s, I\'m a %s.") % (string_1,string_2); ```

Original source