Surely this would not work:
greeting = "hello {x}" greet = lambda x: f greeting
code = 'f"{input()} {x}"' lambda x: eval(code)
code = 'f"here it is {eval(input())}"' (lambda: eval(code))()
Surely this would not work: