Method # 1: Using format()
# Python code for demo # concatenate boolean # with string # Initialize string and boolean ini_string = "Facts are" value = True # Concatenate using the format res = str (ini_string + " {} " ). format (value) # Print the resulting string print ( "Resultant String:" , res) |
Exit:
Resultant String: Facts are True
Method # 2: Using the street
# Python code for demo # concatenate boolean # with string # Initialize string and boolean ini_string = "Facts are" value = True # Concatenate using str res = ini_string + "" + str (value) # Print the resulting string print ( "Resultant String:" , res) |
Output :
Resultant String: Fact s are True
Method # 3: Using% s
# Python code for demonstration # concatenate boolean # with string # Concatenate using% s answer = True res = "Facts are% s" % answer # Print the resulting string print ( "Resultant String:" , res) |
Exit:
Resultant String: Facts are True
Python | Ways to combine a boolean value into a string Python functions: Questions
Python | Ways to combine a boolean value into a string String Variables: Questions