Python是哪一类语言?
下列哪个关键字用于定义函数?
在Python中,如何获取列表的长度?
length(list)
list.size()
len(list)
sizeOf(list)
下列哪个选项用于向列表末尾添加元素?
list.add()
list.append()
list.insert()
list.extend()
Python中用于条件判断的关键字是?
下列哪个运算符用于整数除法?
如何在Python中打开一个文件?
open(file, 'r')
read(file)
file.open('r')
open('r', file)
在Python中,如何创建一个空集合?
new set()
{}
set()
emptySet()
下列哪个函数用于从键盘读取用户输入?
read_input()
input()
get_input()
user_input()
在Python中,如何引用第二个元素?
list[1]
list[2]
list(2)
list.second()
下列哪个模块用于绘制图表?
drawlib
plot
graph
matplotlib
如何在Python中处理异常?
try/except
if/else
handle/exception
catch/throw
下列哪个选项用于检查两个变量是否相等?
=
==
===
!=
如何删除列表中的第一个元素?
list.delete(0)
list.remove(0)
list.pop(0)
list.del(0)
在Python中,如何定义一个元组?
tuple = (1, 2, 3)
tuple = [1, 2, 3]
tuple(1, 2, 3)
tuple(1)(2)(3)
下列哪个关键字用于退出循环?
next
exit
break
stop
在Python中,如何复制一个列表?
new_list = old_list.copy()
new_list = old_list.clone()
new_list = copy(old_list)
new_list = old_list
下列哪个选项用于将字符串转换为小写?
string.upper()
string.toLower()
string.lower()
string.casefold()
如何查找列表中的最大值?
max(list)
list.max()
list.largest()
largest(list)
Python中的注释符号是?
//
/* */
#
--
______
.______
.______
.______
.______
关键字声明一个空字典。______
.______
语句导入它。______
语句用于捕获所有异常。______
.______
方法用于将元素添加到集合中。答案:
len(list)
list.append()
open(file, 'r')
set()
input()
list[1]
matplotlib
try/except
==
list.pop(0)
tuple = (1, 2, 3)
break
new_list = old_list.copy()
string.lower()
max(list)
#
[]
.len()
.int
.and
.dict
关键字声明一个空字典。string[0]
.import
语句导入它。except
语句用于捕获所有异常。read()
.add
方法用于将元素添加到集合中。