1.helloFile = open("E:\\Python\\test\\20.1.15\\hello.txt")
print(helloFile)
报错:<_io.TextIOWrapper name='E:\\Python\\test\\20.1.15\\hello.txt' mode='r' encoding='cp936'>
应该print(helloFile.read())
2.open方法里可能会加newline=,表示换行符
1.helloFile = open("E:\\Python\\test\\20.1.15\\hello.txt")
print(helloFile)
报错:<_io.TextIOWrapper name='E:\\Python\\test\\20.1.15\\hello.txt' mode='r' encoding='cp936'>
应该print(helloFile.read())
2.open方法里可能会加newline=,表示换行符