我有一个这样的字符串。
Variable = ''
S = """
This is my """+Variable+""" in my string"""
def fun():
Variable = 'Changed Variable'
NewS = """
First sentence. """+S
希望的输出:
First sentence. This is my Changed Variable in my string
我现在得到的是:第一句话. 这是我的字符串中的
是我把变量放在字符串中,然后把它作为一个字符串,以后如何更新这个字符串中的变量?
只需使用一个格式化的字符串或常规字符串,并在其中添加var。
string = f"This is my {Variable} in my string"