Cant figure out this Type Error

Hi I am very new python and I can seem to figure out how to fix this Type Error. I know that you can’t add a int to a string but I am not sure how to convert it. Any help would be much appreciated.

Check out the built-in functions: https://docs.python.org/3/library/functions.html

Yes, you have to tell python to convert the 3 to a string with str(3) if you want to do that or use an f-string.