Discuss / Python / 作业

作业

Topic source

fpath = r'C:\Users\81510\Desktop\test.txt'

with open(fpath, 'r') as f:

    s = f.read()

    print(s)


  • 1

Reply