📜  python 连接路径 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:04.440000             🧑  作者: Mango

代码示例1
import os

# Join paths using OS import. Takes any amount of arguments
path = os.path.join('/var/www/public_html', './app/', ".\\my_file.json")

print(path) # /var/www/public_html/app/myfile.json