Python怎么把变量插入字符串?

2024-12-01 01:30:04
推荐回答(2个)
回答1:

变量可以直接和路径字符串拼到一起使用,或者使用os.path.join函数来拼接路径。

下面我写了一个演示代码给你参考。注意我没有写文件名合法性的验证,需要你自己写。

import os

def getpath():

    bpth=''

    while not os.path.exists(bpth):

        bpth=input('请输入一个有效的根路径:')

    hasdir=''

    while hasdir!='Y' and hasdir!='N':

        hasdir=input('是否为文件创建一个文件夹?Y/N:')

    if(hasdir=='Y'):

        dirpth=input('请输入文件夹名称:')

        dirpth=os.path.join(bpth,dirpth)

        os.makedirs(dirpth)

    else:

        dirpth=bpth

    return dirpth

fpath=getpath()

fname=input('请输入文件名称及后缀名:')

fpath=os.path.join(fpath,fname)

file=open(fpath,'w')

file.close()

回答2:

str语句,或用%的形式带入,具体可以上网了解一下