So I have something complicated but here is a simple version of it:
i, j = 1, 2
a_1, a_2 = 1, 2
f"{a_f'{i}'} + {a_f'{j}'} = 3" == '1 + 2 = 3'
I want an expression like in the left side to give a result like in the right side, the one I wrote here gives an error.
Can this be done using nested f-strings?