我有以下代码:
source_dir = "/tmp/tmp6q51y7qb"
source_name = "/home/me/test/kernels/devito-cqyn0kni/28851c9f7354c86210d6e2e4fcb3adeae4be2b8f.c"
from os.path import join
source_file = join(source_dir, source_name)
print(source_file)
我希望source_file
是source_dir
和source_name
的串联,但是它只返回source_name
。
我尝试在此处阅读文档:https://docs.python.org/3/library/os.path.html 但是我没有成功理解它。
有人可以给我举个例子吗?