共计 366 个字符,预计需要花费 1 分钟才能阅读完成。
你可以使用 Python 中的 open()
函数来创建文件。下面是一个示例:
import os
path = '/path/to/your/directory'
filename = 'example.txt'
# 拼接路径和文件名
file_path = os.path.join(path, filename)
# 创建文件并写入内容
with open(file_path, 'w') as file:
file.write('Hello, world!')
在上面的示例中,首先指定了要创建文件的路径和文件名。然后使用 os.path.join()
函数将路径和文件名拼接在一起,得到文件的完整路径。最后使用 open()
函数以写入模式(‘w’)打开文件,并写入内容。
丸趣 TV 网 – 提供最优质的资源集合!
正文完