请问有人能解决我的问题。
我正在编写读取用户主目录的小脚本,附加文件夹名称并使用该文件夹中的文件
import os
i=os.path.expanduser('~')
print ('{}\.myfolder'.format (i))
之后
myFile= ?????here must be resul of printing
winsound.PlaySound(myFile,winsound.SND_NOSTOP)
答案 0 :(得分:1)
使用os.path.join
:
>>> import os
>>> path = os.path.join(os.path.expanduser('~'), '.myfolder') # save the value
>>> print(path) # print it
C:\Users\falsetru\.myfolder
答案 1 :(得分:1)
myFile = os.path.join(...whatever...)