预览加载中,请您耐心等待几秒...
1/3
2/3
3/3

在线预览结束,喜欢就下载吧,查找使用更方便

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

⼤⼀python选择题题库答案_Python复习题库带答案1.下列Python语句的输出结果是(‘NoneType’>)deff():passprint(type(f()))Python语句a,b=3,4;a,b=b,a;print(a,b)的结果是4,3Python通过内置函数(type())来测试对象的类型,通过(==)运算符判断两个变量指向的对象的值是否相同Python提供两个对象⾝份⽐较运算符,(is)和(isnot)来判断两个变量是否指向同⼀个对象Python表达式4.5/2的值为(2.25);Python表达式4.5//2的值为(2);Python表达式4.5%2的值为(0.5);Python表达式12/4-2+5*8/4%5/2的值为(1.0)计算232-1的python表达式可书写成(math.pow(2,32)-1)Python使⽤(缩进对齐)格式划分语句块Python语句分为(简单语句)和复合语句Python语句print(hex(16))的输出结果是(0x10)Python语句print(2.5.as_integer_ratio())的输出结果是((5,2))Python语句print(float.as_integer_ratio(1.5))的输出结果是((3,2))Python语句print(int('20',16),int('101',2))的输出结果是(325)Python语句print((2-3j).conjugate()*complex(2,3))的输出结果是(-5+12J)Python语句print(chr(ord('B')))的结果是(B)Python表达式0and1ornot2-----FalsePython语句print(divmod(7,4))的输出结果是((1,3))Python语句print(floor(15.5))的输出结果是(15)Python语句print(round(18.67,-1))的输出结果是(20)已知a=3;b=5;c=6;d=True,则表达式notdora>=0anda+c>b+3的值是(True)Python语句x=0;y=True;print(x>=yand'A'(False)Python语句print(bin(10))的输出结果是(0b1010)Python表达式3**2**3的值为(6561)Python的标准随机数⽣成模块是(random)Python语句print(gcd(12,16))的输出结果是(4)Python语句x=True;y=False;print(xoryandz)的程序运⾏结果是TrueB、4841!C、4841D、HA!正确答案:D2.Python语句print(type((1,2,3,4))的输出结果是_A、B、C、D、正确答案:A3.Python语句s={'a',1,'b',2};print(s['b'])的运⾏结果是A、语法错B、b'C、1D、2正确答案:A4.Python语句nums=set([1,2,2,3,3,3,4]);print(len(nums))的输出结果是_A、1B、2C、4D、7正确答案:C5.Python语句s='hello';print(s[1:3])的运⾏结果是_A、helB、heC、ellD、el正确答案:D6.Python语句a=(1,2,3,Nne,(),[],);print(len(a))运⾏结果是A、语法错B、4C、5D、6正确答案:DA、新⾏和字符串GoodC、GoodD、字符T、新⾏和字符串Good正确答案:C8.Python语句d={1:'a',2:'b',3:'c'};print(len(d))的运⾏结果是A、0B、1C、3D、6正确答案:CPython语句print(type({1,2,3,4}))的输出结果是A、B、C、D、正确答案:C10.Python语句a=[1,2,3,None,0,[],];print(len(a))的输出结果是A、4B、5C、6D、7正确答案:C