クラシック文字列を f-string に変換するにはどうすればよいですか?
variable = 42
user_input = "The answer is {variable}"
print(user_input)
出力:The answer is {variable}
f_user_input = # Here the operation to go from a string to an f-string
print(f_user_input)
望ましい出力:The answer is 42