\!h Полезные функции работы со строками
https://pythonworld.ru/tipy-dannyx-v-python/stroki-funkcii-i-metody-strok.html
\!h Форматирование строк
https://pythonworld.ru/osnovy/formatirovanie-strok-metod-format.html
\!h Конкатенация
print('Hello' + ' ' + 'world')
\!h Многострочные блоки
a = '''Text
Hello \n\n\n
Hi'''
print(a)
\!h Поиск в строке
print(a.find('j'))
if a.find('j') != -1:
print('Founded')
else:
print('Not found')