Python | Formas de concatenar booleanos a strings

Dada una string y un valor booleano, escriba un programa de Python para concatenar la string con un valor booleano, a continuación se presentan algunos métodos para resolver la tarea.

Método #1: Usarformat()

# Python code to demonstrate 
# to concatenate boolean value
# with string
  
# Initialising string and boolean value
ini_string = "Facts are"
value = True
  
# Concatenate using format
res = str(ini_string+" {}").format(value)
  
# Printing resultant string
print ("Resultant String : ", res)
Producción:

Resultant String :  Facts are True

 
Método #2: Usando str

# Python code to demonstrate 
# to concatenate boolean value
# with string
  
# Initialising string and boolean value
ini_string = "Facts are"
value = True
  
# Concatenate using str
res = ini_string +" "+str(value)
  
# Printing resultant string
print ("Resultant String : ", res)
  
         
Producción:

Resultant String :  Facts are True

 
Método #3: Usando %s

# Python code to demonstrate 
# to concatenate boolean value
# with string
  
# Concatenate using % s
answer = True
res = "Facts are %s" %answer
  
# Printing resultant string
print ("Resultant String : ", res)
  
         
Producción:

Resultant String :  Facts are True

Publicación traducida automáticamente

Artículo escrito por garg_ak0109 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *