Skip to content
Advertisement

Having a problem in python: Showing error can only concatenate str (not “bool”) to str

I am quite new to python, so sorry for the “noob” code if you will say. But please help me : I am trying to add two numbers and show which one is bigger as a boolean value

JavaScript

Advertisement

Answer

The result of a comparison operator is a boolean (either True or False). As the error message says, you can’t concatenate strings with boolean values, as Python is a strongly typed language. You have several options:

  1. Pass them as separate arguments to the print function:

    JavaScript
  2. Use an f-string:

    JavaScript
  3. Use .format():

    JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement