Python第一次周考(0402)

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

一、单选

1、Python3中下列语句错误的有哪些?

A s = input()

B s = raw_input()

C print('hello world.')

D print('''hello world.''')

2、下面哪个是 Pycharm 在 Windows 下 默认 用于“批量注释”的快捷键

A Ctrl + d

B Ctrl + 鼠标左键

C Ctrl + /

D Ctrl + Shift + f

3、下面哪个是 Pycharm 在 Windows 下 默认 用于“查找当前文件中的关键字”的快捷键

A Ctrl + f

B Ctrl + Shift + f

C Ctrl + n

D Ctrl + Shift + n

4、下面哪个是 Pycharm 在 Windows 下 默认 用于“查找当前项目中的关键字”的快捷键 

A Ctrl + f

B Ctrl + Shift + f

C Ctrl + n

D Ctrl + Shift + n

5、下面哪个是 Pycharm 在 Windows 下 默认 用于“搜索最近编辑过的文件”的快捷键

A Ctrl + e

B Ctrl + Shift + p

C Ctrl + p

D Ctrl + Shift + e

6、下面哪个是 Pycharm 在 Windows 下 默认 用于“任意位置换行”的快捷键

A Ctrl + Enter

B Ctrl + Shift + Enter

C Ctrl + Shift

D Shift + Enter

7、下面哪个是 Pycharm 在 Windows 下 默认 用于“快速代码格式化(PEP8格式)”的快捷键

A Ctrl + Alt + L

B Shift + L

C Alt + L

D Ctrl + Shift + L

8、Python关系运算符中表示“不等于”的是哪个?

A ==

B =!

C !=

D !!

9、下面选项哪个是python不支持的数据类型

A char                

B int                  

C float                

D list

10、下列表达式的值为True的是

A 5+4j > 2-3j                        

B 3>2<=2

C (3,2) 'xyz'

D 1=1

11、如何定义一个list?

A a=(1,2,3,4,5)

B a=[1 2 3 4 5]

C a={ 1 2 3 4 5}

D a=[1,2,3,4,5]

12、如下赋值,b[0]的值是?

a=100

b=["a",20,10,55,90]

A 100

B a

C "a"

D 'a'

13、定义列表 list=['abc',99,'ccc','ddd']  然后执行  list.pop()  则list的值为?

A ['abc', 99, 'ccc']

B ['abc', 99, 'ccc', 'ddd']

C [abc, 99, ccc]

D 'ddd'

14、如果我们需要把连个字典合并是一个字典,需要调用字典的哪种方法

A. update
B. index
C. append
D. get

15、字典的pop方法的返回值是什么

A. key
B. value
C. 元素下标
D. 无

16、字典的value是什么类型的数据

A. str
B. list
C. tuple
D. 可以为任何类型

17、表达式a, b = (1, 2)代表的是什么意思

A. a = b = 1
B. a = b = 2
C. a = 1, b = 2
D. a = 2, b = 1

二、多选题

1、Pycharm设置Python模板文件中可以使用的变量有哪些?

A ${TIME} ${DATE}

B ${USER}

C ${AUTHOR}

D ${NAME}

2、下面选项哪些是正确的?

A 位:计算机的计算单位,代表0或者1

B 字节:一字节相当于8位

C Python中单行注释的符号是 '#'

D Python中多行注释的符号是 '/**/'

3、以下运算符正确的有?

A a**b

B a == b

C c //= b

D not(a and b)

4、下面选项对变量赋值,哪个是正确的?

A s='It's my book'

B s="It's my book"

C s='It\'s my book'

D s="It\'s my book"

5、假设str='This is a test character.',以下选项正确的有?

A print str[:-3]的结果为This is a test charac

B print str[1:10]的结果为This is a

C print str[::-1]的结果为.retcarahc tset a si sihT

D print str[2]的结果为i

6、字典常用的定义方式有哪些?

A. dict(a=1, b=2)
B. {“name”: “lingjing”}
C. dict([(“name”, “ling”), (“age”, 20)])
D. 以上都是

7、我们想判断一个数据的类型,可以使用下面的哪个函数

A. type
B. help
C. isinstance
D. hasattr

8、以下哪个选项是一个json串

A. 以下都是
B. [{"name": "ling"}, {"a": "1"}]
C. dict(a=1, b=2)
D. {"hello": "world"}

 

三、正确答案

单选题

1--5 BCABD    6--10 DACAB  11--17  DDAABDC

解析1 Python3中已经没有aw_input了

多选   

1 ABD  

解析:这里很容易把 C 选项也选上了,但实际上${AUTHOR}是没有的,这个打开Pycharm试一遍就好了

2 ABC

解析:Python多行注释的符号应该是 ''' """

3 ABCD 

4 BCD

5 CD

6 ABCD

7 AC

8 BD

转载于:https://my.oschina.net/u/3821557/blog/1788893

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/390773.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

express 路由中间件_Express通过示例进行解释-安装,路由,中间件等

express 路由中间件表达 (Express) When it comes to build web applications using Node.js, creating a server can take a lot of time. Over the years Node.js has matured enough due to the support from community. Using Node.js as a backend for web applications a…

ASP.NET 页面之间传值的几种方式

对于任何一个初学者来说&#xff0c;页面之间传值可谓是必经之路&#xff0c;却又是他们的难点。其实&#xff0c;对大部分高手来说&#xff0c;未必不是难点。 回想2016年面试的将近300人中&#xff0c;有实习生&#xff0c;有应届毕业生&#xff0c;有1-3年经验的&#xff0c…

Mapreduce原理和YARN

MapReduce定义 MapReduce是一种分布式计算框架&#xff0c;由Google公司2004年首次提出&#xff0c;并贡献给Apache基金会。 MR版本 MapReduce 1.0&#xff0c;Hadoop早期版本(只支持MR模型)MapReduce 2.0&#xff0c;Hadoop 2.X版本&#xff08;引入了YARN资源调度框架后&a…

数据可视化图表类型_数据可视化中12种最常见的图表类型

数据可视化图表类型In the current era of large amounts of information in the form of numbers available everywhere, it is a difficult task to understand and get insights from these dense piles of data.在当今时代&#xff0c;到处都是数字形式的大量信息&#xff…

三大纪律七项注意(Access数据库)

三大纪律&#xff08;规则或范式&#xff09; 要有主键其他字段依赖主键其他字段之间不能依赖七项注意 一表一主键(订单表&#xff1a;订单号&#xff1b;订单明细表&#xff1a;订单号产品编号)经常查&#xff0c;建索引&#xff0c;小数据&#xff08;日期&#xff0c;数字类…

CentOS下安装JDK的三种方法

来源&#xff1a;Linux社区 作者&#xff1a;spiders http://www.linuxidc.com/Linux/2016-09/134941.htm 由于各Linux开发厂商的不同,因此不同开发厂商的Linux版本操作细节也不一样,今天就来说一下CentOS下JDK的安装: 方法一&#xff1a;手动解压JDK的压缩包&#xff0c;然后…

MapReduce编程

自定义Mapper类 class TokenizerMapper extends Mapper<Object, Text, Text, IntWritable> &#xff5b; … }自定义mapper类都必须实现Mapper类&#xff0c;有4个类型参数&#xff0c;分别是&#xff1a; Object&#xff1a;Input Key Type-------------K1Text: Input…

统计信息在数据库中的作用_统计在行业中的作用

统计信息在数据库中的作用数据科学与机器学习 (DATA SCIENCE AND MACHINE LEARNING) Statistics are everywhere, and most industries rely on statistics and statistical thinking to support their business. The interest to grasp on statistics also required to become…

IOS手机关于音乐自动播放问题的解决办法

2019独角兽企业重金招聘Python工程师标准>>> 评估手机自带浏览器不能识别 aduio标签重的autoplay属性 也不能自动执行play()方法 一个有效的解决方案是在微信jssdk中调用play方法 document.addEventListener("WeixinJSBridgeReady", function () { docum…

svg标签和svg文件区别_什么是SVG文件? SVG图片和标签说明

svg标签和svg文件区别SVG (SVG) SVG or Scalable Vector Graphics is a web standard for defining vector-based graphics in web pages. Based on XML the SVG standard provides markup to describe paths, shapes, and text within a viewport. The markup can be embedded…

开发人员怎么看实施人员

英文原文&#xff1a;What Developers Think Of Operations&#xff0c;翻译&#xff1a;张红月CSDN 在一个公司里面&#xff0c;开发和产品实施对于IS/IT的使用是至关重要的&#xff0c;一个负责产品的研发工作&#xff0c;另外一个负责产品的安装、调试等工作。但是在开发人员…

怎么评价两组数据是否接近_接近组数据(组间)

怎么评价两组数据是否接近接近组数据(组间) (Approaching group data (between-group)) A typical situation regarding solving an experimental question using a data-driven approach involves several groups that differ in (hopefully) one, sometimes more variables.使…

代码审计之DocCms漏洞分析

0x01 前言 DocCms[音译&#xff1a;稻壳Cms] &#xff0c;定位于为企业、站长、开发者、网络公司、VI策划设计公司、SEO推广营销公司、网站初学者等用户 量身打造的一款全新企业建站、内容管理系统&#xff0c;服务于企业品牌信息化建设&#xff0c;也适应用个人、门户网站建设…

你让,勋爵? 使用Jenkins声明性管道的Docker中的Docker

Resources. When they are unlimited they are not important. But when theyre limited, boy do you have challenges! 资源。 当它们不受限制时&#xff0c;它们并不重要。 但是&#xff0c;当他们受到限制时&#xff0c;男孩你有挑战&#xff01; Recently, my team has fa…

翻译(九)——Clustered Indexes: Stairway to SQL Server Indexes Level 3

原文链接&#xff1a;www.sqlservercentral.com/articles/StairwaySeries/72351/ Clustered Indexes: Stairway to SQL Server Indexes Level 3 By David Durant, 2013/01/25 (first published: 2011/06/22) The Series 本文是阶梯系列的一部分&#xff1a;SQL Server索引的阶梯…

power bi 中计算_Power BI中的期间比较

power bi 中计算Just recently, I’ve come across a question on the LinkedIn platform, if it’s possible to create the following visualization in Power BI:就在最近&#xff0c;我是否在LinkedIn平台上遇到了一个问题&#xff0c;是否有可能在Power BI中创建以下可视化…

-Hive-

Hive定义 Hive 是一种数据仓库技术&#xff0c;用于查询和管理存储在分布式环境下的大数据集。构建于Hadoop的HDFS和MapReduce上&#xff0c;用于管理和查询分析结构化/非结构化数据的数据仓库; 使用HQL&#xff08;类SQL语句&#xff09;作为查询接口&#xff1b;使用HDFS作…

CentOS 7 安装 JDK

2019独角兽企业重金招聘Python工程师标准>>> 1、下载oracle jdk 下载地址&#xff1a; http://www.oracle.com/technetwork/java/javase/downloads/index.html 选择同一协议&#xff0c;下载rpm格式版本jdk&#xff0c;或tar.gz格式jdk。 2、卸载本机openjdk 2.1、查…

javascript 布尔_JavaScript布尔说明-如何在JavaScript中使用布尔

javascript 布尔布尔型 (Boolean) Booleans are a primitive datatype commonly used in computer programming languages. By definition, a boolean has two possible values: true or false.布尔值是计算机编程语言中常用的原始数据类型。 根据定义&#xff0c;布尔值有两个…

如何进行数据分析统计_对您不了解的数据集进行统计分析

如何进行数据分析统计Recently, I took the opportunity to work on a competition held by Wells Fargo (Mindsumo). The dataset provided was just a bunch of numbers in various columns with no indication of what the data might be. I always thought that the analys…