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,一经查实,立即删除!

相关文章

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…

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…

开发人员怎么看实施人员

英文原文&#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;也适应用个人、门户网站建设…

翻译(九)——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、查…

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

如何进行数据分析统计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…

020-Spring Boot 监控和度量

一、概述 通过配置使用actuator查看监控和度量信息 二、使用 2.1、建立web项目&#xff0c;增加pom <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency> 启动项目&a…

matplotlib布局_Matplotlib多列,行跨度布局

matplotlib布局For Visualization in Python, Matplotlib library has been the workhorse for quite some time now. It has held its own even after more nimble rivals with easier code interface and capabilities like seaborn, plotly, bokeh etc. have arrived on the…

Hadoop生态系统

大数据架构-Lambda Lambda架构由Storm的作者Nathan Marz提出。旨在设计出一个能满足实时大数据系统关键特性的架构&#xff0c;具有高容错、低延时和可扩展等特性。Lambda架构整合离线计算和实时计算&#xff0c;融合不可变性&#xff08;Immutability&#xff09;&#xff0c…

使用Hadoop所需要的一些Linux基础

Linux 概念 Linux 是一个类Unix操作系统&#xff0c;是 Unix 的一种&#xff0c;它 控制整个系统基本服务的核心程序 (kernel) 是由 Linus 带头开发出来的&#xff0c;「Linux」这个名称便是以 「Linus’s unix」来命名的。 Linux泛指一类操作系统&#xff0c;具体的版本有&a…

python多项式回归_Python从头开始的多项式回归

python多项式回归Polynomial regression in an improved version of linear regression. If you know linear regression, it will be simple for you. If not, I will explain the formulas here in this article. There are other advanced and more efficient machine learn…

回归分析_回归

回归分析Machine learning algorithms are not your regular algorithms that we may be used to because they are often described by a combination of some complex statistics and mathematics. Since it is very important to understand the background of any algorith…