单项选择题python属于()语言。

A.低级
B.高级
C.中级
D.底层


您可能感兴趣的试卷

你可能感兴趣的试题

1.单项选择题python中如想导入模块,则使用()。

A.input
B.import
C.#import
D.include

2.单项选择题python中,哪些是序列()。

A.链表
B.字符串
C.字典
D.字节

3.单项选择题python中,序列是有序元素的()。

A.集合
B.列表
C.字符串
D.字典

4.单项选择题使用for循环10次,需要()。

A.range(10)
B.range(9)
C.range()
D.range(11)

5.单项选择题forIinrange(2):print(’hi’)的结果()。

A.打印两次hi
B.打印两次2
C.打印一次2
D.打印一次hi