f = open('somefile.txt','r')
print(f.read())
读取该文件,调用read()函数,读取文件中的所有内容
f.read('somefile.txt')
两者的区别???
调用open函数时,默认为“r”,所以不填方式时,默认为读文件
f = open('somefile.txt','r')
print(f.read())
读取该文件,调用read()函数,读取文件中的所有内容
f.read('somefile.txt')
两者的区别???
调用open函数时,默认为“r”,所以不填方式时,默认为读文件