파일 목록
#info.py
basepath = "c:/python_a"
basefile = "/test.txt"
basefullfile = basepath + basefile
subpath = "/scores"
subfile = "/scores.txt"
subfullfile = basepath + subpath + subfile
if __name__ == "__main__" :
print(basefullfile)
print(subfullfile)