单选题 Which of the following refers to a mathematical function? (Ans:A) 以下哪个是数学函数的例子? ()

A、 sqrt
B、 ad
C、 C)rect
D、 square
下载APP答题
由4l***j8提供 分享 举报 纠错

相关试题

单选题 Which of the following commands will create a LIST?(Ans:D) 以下哪个命令将创建一个列表? ()

A、list1=list()
B、list1=[]
C、list1 = list([1,2,3])
D、All

单选题 What does the ZIP() function return? (Ans:C) ZIP() 函数返回什么? ()

A、map object
B、list object
C、zip object
D、None

单选题 Is Python case-sensitive when dealing with identifiers? (Ans-A) 处理标识符时,Python 是否区分大小写? ()

A、Yes
B、No
C、Machin
D、dependent
E、Non
F、o
G、th
H、mentioned

单选题 Which of these is not a core data type? (Ans:D) 以下哪个不是核心数据类型? ()

A、list
B、dictionary
C、tupl
D、D)class

单选题 Which keyword is used to define a function in Python? (Ans: A) 在Python中,用于定义函数的关键字是什么? ()

A、de
B、B)function
C、defin
D、D)create

单选题 Which of the following is the correct way to create an array of integers in Python? (Ans:A) 以下哪个是在 Python 中创建整数数组的正确方式? ()

A、array.array(‘i’, [1,2,3])
B、array(‘I’, [2,3])
C、array.array({1,2,3})
D、array.arr(1,2,3)

单选题 Which of the following is an invalid variable? (Ans:B) 以下哪个是无效的变量? ()

A、My_string_1
B、1st_strin
C、C)foo
D、_myVar

单选题 Which of the following is incorrect for this Python code: t = (1,2,3,4)? (Ans:B) 以下关于这段 Python 代码 t = (1,2,3,4) 哪个是不正确的? ()

A、print(t[3])
B、t[3]=40
C、print(max(t))
D、print(t)