“Agregar cuerdas en Python” Código de respuesta

Agregar cuerdas en Python

# concatenating strings just means combining strings together
# it is used to add one string to the end of another
# below are two exmaples of how concatenation can be used 
# to output 'Hello World':

# example 1:
hello_world = "Hello" + " World"
print(hello_world)

>>> Hello World

# example 2:
hello = "Hello"
print(hello + " World")

>>> Hello World
codeconnoisseur

Python fusionar cuerdas

my_list = ['a', 'b', 'c', 'd']
my_string = ','.join(my_list)
# Output = 'a,b,c,d'
Quercia

Respuestas similares a “Agregar cuerdas en Python”

Preguntas similares a “Agregar cuerdas en Python”

Más respuestas relacionadas con “Agregar cuerdas en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código