“Strings de mesclagem Python” Respostas de código

Strings concatenando em 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

Strings de mesclagem Python

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

string python: concatenação de string

# Хоёр мөрийн агуулгыг нэг мөр болгон нэгтгэхийн тулд Python нь + операторыг өгдөг. 
# Мөрүүдийг холбох энэ процессыг холболт гэж нэрлэдэг.

x = 'One fish, '
y = 'two fish.'
 
z = x + y
 
print(z)
# Output: One fish, two fish.
Puzzled Porcupine

Respostas semelhantes a “Strings de mesclagem Python”

Perguntas semelhantes a “Strings de mesclagem Python”

Mais respostas relacionadas para “Strings de mesclagem Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código