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

A.列表
B.元組
C.字典
D.集合
E.數組


您可能感興趣的試卷

你可能感興趣的試題

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

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

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

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

3.多項選擇題在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

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

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

5.多項選擇題面向對象編程中,哪些是類的私有方法?()

A.__name
B.__age
C.__run()
D.__eat()
E.__height