Python练习题答案(4)总结及解析

0 下载量 100 浏览量 更新于2024-03-24 收藏 75KB DOCX 举报
__[答案]: 可以使用以下Python语言,对给出的8个填空题进行验证:__ ```python # 1. Python标准库math中用来计算平方根的函数是__________。(sqrt) import math print(math.sqrt(4)) # 2. 在Python中__________表示空类型。(None) a = None if a is None: print(True) # 3. 列表、元组、字符串是Python的_________(有序?无序)序列。(有序) my_list = [1, 2, 3] my_tuple = (4, 5, 6) my_string = "abc" print(my_list, my_tuple, my_string) # 4. 查看变量类型的Python内置函数是________________。(type()) num = 10 print(type(num)) # 5. 查看变量内存地址的Python内置函数是_________________。(id()) print(id(num)) # 6. 表达式[1, 2, 3]*3的执行结果为______________________。([1, 2, 3, 1, 2, 3, 1, 2, 3]) result = [1, 2, 3] * 3 print(result) # 7. list(map(str, [1, 2, 3]))的执行结果为_____________________。([‘1’, ‘2’, ‘3’]) result = list(map(str, [1, 2, 3])) print(result) # 8. 已知 x = 3,并且 id(x)的返回值为 0,那么执行语句 x = 6 之后,表达式 id(x) == 0 的结果为_____________________。(False) x = 3 print(id(x)) x = 6 print(id(x)) print(id(x) == 0) ``` __以上代码会输出以下结果:__ ```python 2.0 True [1, 2, 3] (4, 5, 6) abc <class 'int'> 140722014056080 [1, 2, 3, 1, 2, 3, 1, 2, 3] ['1', '2', '3'] 10968896 10968832 False ``` __通过以上验证,我们可以得出8个填空题的正确答案。__ __参考来源: https://blog.csdn.net/augusdi/article/details/78510747__