python的f-string问题

图片说明

u = 'https://xxx.com/{id}'
id = 1
b = f"{u}" #'https://xxx.com/{id}'
c = 'https://xxx.com/1'

python的f-string怎么做到让b达到c的结果?不能先定义id,也不想要f'{xxx.com}{id}'的方法,主要想知道有没有什么奇技淫巧。

阅读 2.6k
1 个回答
u = 'https://xxx.com/{id}'
id = 1
c = u.format(id = id)
推荐问题
宣传栏