单项选择题
A.type(var)B.var.type()C.var.__class__D.A和C都对
在Python中,如何将两个列表连接起来?()A.list1+list2B.list1.extend(list...
单项选择题在Python中,如何将两个列表连接起来?()
A.list1+list2B.list1.extend(list2)C.list1.append(list2)D.A和B都对
在Python中,如何生成一个范围内的数字列表?()A.range()B.arange()C.numbers(...
单项选择题在Python中,如何生成一个范围内的数字列表?()
A.range()B.arange()C.numbers()D.list()
在Python中,如何关闭一个打开的文件?()A.file.close()B.file.end()C.clos...
单项选择题在Python中,如何关闭一个打开的文件?()
A.file.close()B.file.end()C.close(file)D.file.exit()