with open()函数中,如何在文件名设置中引用变量(python)

name = "wangyang"
age = "25"

with open("C:/Users/mike1/Desktop/name_age.txt", "w", encoding = "utf-8") as f1:
    f1.write("hellow world")

这么写是不行的,文件名是name_age.txt,而不是wangyang_25.txt.

如下图:

with open()函数中,如何在文件名设置中引用变量(python)

with open()函数中,如何在文件名设置中引用变量(python)

正确的方式应该是用format()函数

name = "wangyang"
age = "25"

with open("C:/Users/mike1/Desktop/{0}_{1}.txt".format(name, age), "w", encoding = "utf-8") as f1:
    f1.write("hellow world")

如下图所示:

with open()函数中,如何在文件名设置中引用变量(python)

 with open()函数中,如何在文件名设置中引用变量(python)

关于format() 的一些基本的用法:

相关推荐