Today I explain a tricky "feature" of python that is pretty easy to trip up on: string literal joining.
'hello' 'world'
def f():
return 'hello' 'world'
import dis
dis.dis(f)
def f():
return 'hello' + 'world'
dis.dis(f)
x = 'thing'
'hello' f'{x}!'
gcc t.c
./a.out