“Добавление струн вместе в Python” Ответ

Добавление струн вместе в 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

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

Ответы похожие на “Добавление струн вместе в Python”

Вопросы похожие на “Добавление струн вместе в Python”

Больше похожих ответов на “Добавление струн вместе в Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования