>>> langs = ['Python', 'Erlang', 'Rust']
>>> f'Long time favorite {langs[0]}. Recent addiction {langs[1]}, {langs[2]}'
'Long time favorite Python. Recent addiction Erlang, Rust'
>>> now = datetime.datetime.now()
>>> f'Presentation prepared on {now.day}-{now.month}-{now.year} {now.hour}:{now.minute}'
'Presentation prepared on 17-2-2017 19:7'