资源描述:
《Python面试考题培训讲学.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、一,中文单项选择题(30分,每个3分)·1.下列哪个语句在Python中是非法的?A、x=y=z=1B、x=(y=z+1)C、x,y=y,xD、x+=y·2.关于Python内存管理,下列说法错误的是A、变量不必事先声明B、变量无须先创建和赋值而直接使用C、变量无须指定类型D、可以使用del释放资源·3、下面哪个不是Python合法的标识符A、int32B、40XLC、selfD、name·4、下列哪种说法是错误的A、除字典类型外,所有标准对象均可以用于布尔测试B、空字符串的布尔值是FalseC、空列表对象的布尔值是FalseD、值为0的任何数字对象的布尔值是F
2、alse·5、下列表达式的值为True的是A、5+4j>2-3jB、3>2>2C、(3,2)<('a','b')D、’abc’>‘xyz’·6、Python不支持的数据类型有A、charB、intC、floatD、list·7、关于Python中的复数,下列说法错误的是A、表示复数的语法是real+imagejB、实部和虚部都是浮点数C、虚部必须后缀j,且必须是小写D、方法conjugate返回复数的共轭复数·8、关于字符串下列说法错误的是A、字符应该视为长度为1的字符串B、字符串以 标志字符串的结束C、既可以用单引号,也可以用双引号创建字符串D、在三引号字符
3、串中可以包含换行回车等特殊字符·9、以下不能创建一个字典的语句是A、dict1={}B、dict2={3:5}C、dict3={[1,2,3]:“uestc”}D、dict4={(1,2,3):“uestc”}·10、下列Python语句正确的是A、min=xifxy?x:yC、if(x>y)printxD、whileTrue:pass二,英文单项选择题(30分)·1.whatgetsprinted?Assumingpythonversion2.x()printtype(1/2)A.B.C
4、.D.E.·2.Whatgetsprinted?()nums=set([1,1,2,3,3,3,4])printlen(nums)A.1B.2C.4D.5E.7·3.Whatgetsprinted?()·counter=1··defdoLotsOfStuff():··globalcounter··foriin(1,2,3):·counter+=1··doLotsOfStuff()··printcounterA.1B.3C.4D.7E.noneoftheabove·4.Whatgets
5、printed?()printr"woow"A.newlinethenthestring:woowB.thetextexactlylikethis:r"woow"C.thetextlikeexactlylikethis:woowD.theletterrandthennewlinethenthetext:woowE.theletterrthenthetextlikethis:nwoow·5.Whichnumbersareprinted?()foriinrange(2):printiforiinrange(4,6):printiA.2,4,6B.0,1,
6、2,4,5,6C.0,1,4,5D.0,1,4,5,6,7,8,9E.1,2,4,5,6·6.Whatgetsprintedbythecodesnippetbelow?()importmathprintmath.floor(5.5)A.5B.5.0C.5.5D.6E.6.0·7.Assumingthefilenameforthecodebelowis/usr/lib/python/person.pyandtheprogramisrunas:python/usr/lib/python/person.pyWhatgetsprinted?()classPerson:d
7、ef__init__(self):passdefgetAge(self):print__name__p=Person()p.getAge()A.PersonB.getAgeC.usr.lib.python.personD.mainE.Anexceptionisthrown·8.Whatgetsprinted?()·names1=['Amir','Barry','Chales','Dao']··if'amir'innames1:·print1·else:·print2A.1B.2C.Anexceptionisthrown·9.Whatgetsprinted?()·
8、numbers=[1,2