About the author


Author: https://t.me/ahillary

Resources


Channel: https://t.me/semolina_code_python

Chat: https://t.me/python_with_ahillary

YouTube: https://www.youtube.com/@semolinacode

Coding training: https://t.me/how_to_code_web3

Private group with software: https://t.me/arbuzerspublic

Операции со строками

Конкатенация (сложение строк)

s1 = 'hello'
s2 = 'world'
print(s1 + ', ' + s2 + '!!')  # hello, world!!

Умножение строки на число

s = 'la'
print(s * 3)  # lalala

Длина строки

s = 'qwerty'
print(len(s))  # 6

Сравнение строк