4-1
2-1.Python 表达式 10 + 5//3 –True+False的值为__________(1分).
答案:10
4-2
2-2.Python 表达式 3 ** 2 ** 3 的值为__________(1分)
答案:6561
4-3
2-3.Python 表达式 round(17.0/3 ** 2,2) 的值为__________(1分)。
答案:1.89
4-4
2-4.Python 表达式 0 and 1 or not 2<True 的值为__________(1分)。
答案:True
4-5
2-5.Python 语句 print(pow(-3, 2), round(18.67, 1), round(18.67, -1))的输出结果是__________(2分)。
答案:9 18.7 20.0
4-6
2-6.Python 语句 print(round(123.84, 0), round(123.84, -2),math.floor(15.5)) 的输出结果是__________(2分)。
答案:124.0 100.0 15
4-7
2-7.Python 语句 print(int(“20”, 16), int(“101”,2))的输出结果是__________(2分)。
答案:32 5
4-8
2-8.Python 语句 print(hex(16), bin(10))的输出结果是(进制用小写字母表示)__________(2分)。
答案:0x10 0b1010
4-9
2-13. 已知 a=3; b=5; c=6; d=True, 则表达式 not d or a>=0 and a+c>b+3的值是__________(1分)。
答案:True
4-10
2-9.Python 语句 print(abs(-10.2), round(abs(8-2j),3)) 的输出结果是__________(2分)。
答案:10.2 8.246
4-11
2-10.数学表达式: 当x=5时的值是(保留两位小数)__________(2分)。
答案:-0.05
4-12
2-11. Python 语句 x=True; y=False; z=False; print(x or y and z)的程序运行结果是__________(1分)。
答案:True
4-13
2-12.Python 语句 x=0; y= True; print(x>=y and‘A’<‘B’) 的程序运行结果是__________(1分)。
答案:False
4-14
2-14. Python 表达式 16-25>78/2 or “XYZ”!="xyz"and not (10-6>18/2)的值是__________(1分)。
答案:True
4-15
2-15. Python输出 print(“hello” ‘world’)的结果是__________(1分)。
答案:helloworld
4-16
2-16.表达式((2>=2) or (2<2)) and 2的值为多少?__________(1分)
答案:2
4-17
2-17.表达式 3 and 0 and 5的结果是什么?__________(1分)。
答案:0
4-18
2-18.表达式 --3 的结果是什么?__________(1分)。
答案:3
4-19
2-19.表达式 —3 的结果是什么?__________(1分)。
答案:-3
|