APP下载
首页
>
IT互联网
>
python选择填空题库练习
搜索
python选择填空题库练习
题目内容
(
简答题
)
22.阅读以下程序,填写运行结果(不考虑 程序运行后字典元素的顺序变化)

答案:答案:小明小红小玲

python选择填空题库练习
8.递归的两个关键特征是( )
https://www.shititong.cn/cha-kan/shiti/00045642-89a5-58fd-c0c9-4cc241d27c00.html
点击查看题目
33.下列语句执行的结果是( )>>>'hello'- 'world'
https://www.shititong.cn/cha-kan/shiti/00045642-8985-80be-c0c9-4cc241d27c00.html
点击查看题目
4.对于序列 numbers=[1,2,3,4,5,6,7,8,9,10],以下相关操作中哪一个得到的结果中包含数字 6?
https://www.shititong.cn/cha-kan/shiti/00045642-8995-64c8-c0c9-4cc241d27c00.html
点击查看题目
13.计算机中数据的表示形式是()。
https://www.shititong.cn/cha-kan/shiti/00045642-8960-92d6-c0c9-4cc241d27c00.html
点击查看题目
17.已知 set1={0,1,2,3},set2={2,3,4,5}。通过集合计算得到 set3={0,1,4,5},可以用表达式 set3 = 实现。(在空格处填写合适的集合计算表达式)
https://www.shititong.cn/cha-kan/shiti/00045648-dd4c-3871-c0c9-4cc241d27c00.html
点击查看题目
37.给定字符串 s=“hello world”,获取”hello”的切片表达式为
https://www.shititong.cn/cha-kan/shiti/00045648-dd42-85c8-c0c9-4cc241d27c00.html
点击查看题目
9.以下语句不符合语法要求的表达式是( )for var in : print( )
https://www.shititong.cn/cha-kan/shiti/00045642-8998-0838-c0c9-4cc241d27c00.html
点击查看题目
10.在 Python 中我们最常用的用来在屏幕上输出计算结果的功能函数是()。
https://www.shititong.cn/cha-kan/shiti/00045642-896b-7d8d-c0c9-4cc241d27c00.html
点击查看题目
16.已知字典 dic={('小明',1):[90,80],('小红'2):[65,88],('小琳',3):[90,100]},则表达式'小明' indic 的值为
https://www.shititong.cn/cha-kan/shiti/00045648-dd4b-fe27-c0c9-4cc241d27c00.html
点击查看题目
44.下列语句的输出结果是' ‘>>>{1}的基本{0}{2} .format( 编写,’程序',’”方法”’)
https://www.shititong.cn/cha-kan/shiti/00045648-dd44-398b-c0c9-4cc241d27c00.html
点击查看题目
首页
>
IT互联网
>
python选择填空题库练习
题目内容
(
简答题
)
手机预览
python选择填空题库练习

22.阅读以下程序,填写运行结果(不考虑 程序运行后字典元素的顺序变化)

答案:答案:小明小红小玲

python选择填空题库练习
相关题目
8.递归的两个关键特征是( )

A.  封装和调用

B.  循环和循环次数

C.  递归链和函数

D.  基例和递归链

https://www.shititong.cn/cha-kan/shiti/00045642-89a5-58fd-c0c9-4cc241d27c00.html
点击查看答案
33.下列语句执行的结果是( )>>>'hello'- 'world'

A. 52473

B.  hello world

C.  程序出错

D.  helloworld

https://www.shititong.cn/cha-kan/shiti/00045642-8985-80be-c0c9-4cc241d27c00.html
点击查看答案
4.对于序列 numbers=[1,2,3,4,5,6,7,8,9,10],以下相关操作中哪一个得到的结果中包含数字 6?

A.  >>> numbers[6]

B.  >>> numbers[5:-1]

C.  >>> numbers[-4:-1]

D.  >>> numbers[0: 5]

https://www.shititong.cn/cha-kan/shiti/00045642-8995-64c8-c0c9-4cc241d27c00.html
点击查看答案
13.计算机中数据的表示形式是()。

A.  二进制

B.  八进制

C.  十进制

D.  十六进制

https://www.shititong.cn/cha-kan/shiti/00045642-8960-92d6-c0c9-4cc241d27c00.html
点击查看答案
17.已知 set1={0,1,2,3},set2={2,3,4,5}。通过集合计算得到 set3={0,1,4,5},可以用表达式 set3 = 实现。(在空格处填写合适的集合计算表达式)
https://www.shititong.cn/cha-kan/shiti/00045648-dd4c-3871-c0c9-4cc241d27c00.html
点击查看答案
37.给定字符串 s=“hello world”,获取”hello”的切片表达式为
https://www.shititong.cn/cha-kan/shiti/00045648-dd42-85c8-c0c9-4cc241d27c00.html
点击查看答案
9.以下语句不符合语法要求的表达式是( )for var in : print( )

A. 5

B.  (1,2,3)

C.  ”Hello”

D.  range(0,10)

https://www.shititong.cn/cha-kan/shiti/00045642-8998-0838-c0c9-4cc241d27c00.html
点击查看答案
10.在 Python 中我们最常用的用来在屏幕上输出计算结果的功能函数是()。

A.  output()

B.  print()

C.  write()

D.  screen()

https://www.shititong.cn/cha-kan/shiti/00045642-896b-7d8d-c0c9-4cc241d27c00.html
点击查看答案
16.已知字典 dic={('小明',1):[90,80],('小红'2):[65,88],('小琳',3):[90,100]},则表达式'小明' indic 的值为
https://www.shititong.cn/cha-kan/shiti/00045648-dd4b-fe27-c0c9-4cc241d27c00.html
点击查看答案
44.下列语句的输出结果是' ‘>>>{1}的基本{0}{2} .format( 编写,’程序',’”方法”’)
https://www.shititong.cn/cha-kan/shiti/00045648-dd44-398b-c0c9-4cc241d27c00.html
点击查看答案
试题通小程序
试题通app下载