有以下程序f=open(‘file.txt’, ’a+’)f.write(‘abc’)f.seek(0,0)s=f.read()print(s)f.close()若文本文件file.txt中原有内容为“hello”,则运行以上程序后,输出为()。
A. helloabc
B. abclo
C. abc
D. abchello
查看答案
Python标准库os中用来返回path目录下的文件和目录列表的是()。
A. os.chdir()
B. os.listdir()
C. os.getcwd()
D. os.mkdir()
下列Python标准库os方法中,用于创建目录的是()。
A. os.rename()
B. os.remove()
C. os.mkdir()
D. os.listdir()
Python标准库os.path中用来分割指定路径中的文件扩展名的方法是()。
A. splitext( )
B. exists( )
C. split( )
D. abspath( )
Python标准库os.path中的abspath()方法用于返回文件的绝对路径。
A. 对
B. 错