Menu



Manage

Cord > Study_Python 전체 다운로드
Study_Python > info.py Lines 13 | 268 바이트
다운로드

                        #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)