多項選擇題以下哪些是Python中的文件操作?()

A.打開文件
B.讀取文件
C.寫入文件
D.關閉文件
E.刪除文件


您可能感興趣的試卷

你可能感興趣的試題

1.多項選擇題以下哪些是Python中的常用數(shù)據(jù)類型?()

A.列表
B.元組
C.字典
D.集合
E.數(shù)組

2.多項選擇題在面向對象編程中,哪些是類的公共方法?()

A.__str__
B.__init__
C.__new__
D.__del__
E.__eq__

3.多項選擇題在面向對象編程中,哪些是類的保護屬性?()

A._name
B._age
C._run()
D._eat()
E._height

4.多項選擇題在Python中,以下哪一個選項是合法的實例方法定義?()

A.def instance_method(self):pass
B.def instance_method():pass
C.def instance_method(self,param):pass
D.def instance_method(param):pass
E.def instance_method(param)pass

5.多項選擇題在面向對象編程中,哪些是類的公共屬性?()

A.name
B.age
C.run()
D.eat()
E.height