我想在我的程序之外配置一个模板字符串,然后在运行时应用它:my_string = \'hello {country}\'#←此字符串将从外部配置中读取......
我想在我的程序之外配置一个模板字符串,然后在运行时应用它:
my_string = "hello {country}" # ← this string would be read in from an external configuration file country = "France" print(f%%my_string%%) # ← the place where the magic happens
这可能吗或者有适当的方法来做到这一点?
你可以这样做:
my_string.format(country=country)
只需看一下 str.format() 方法。
str.format()
我会将它们填充到彼此之下,每个帖子都会有此人的简短传记文本、他们的图像和姓名,如图片所示。此外,还会显示发布日期...
我会将它们填充到彼此之下,每个都会有此人的简短传记文本、他们的图像和姓名,如图所示。此外,发布日期就在最底部。我还没有熟练掌握 Flutter,所以请帮忙。
( https://i.sstatic.net/6ety38BM.png )
是的,创建一个文件,例如 example.txt 。使用 open() 方法打开文件,然后使用 readline() 将第一行读入字符串。
example.txt
open()
readline()
然后写下类似的东西:
with open('example.txt') as f1: country = "France" print(f1.readline().replace('{country}', country))