广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 计算机学校 > 惠州计算机学校 > 正文

Python培训基础测试,测测便知是否入门!_惠州计算机Python培训学校

作者:黄君发布时间:2021-05-23分类:惠州计算机学校浏览:818


导读:在进行Python培训学习的过程中,有的同学说,老师我学习Ppython这么久了,入门了吗?我的Python基础怎么样,你能考考我吗?那么下面带给大家一份Python培训基础测试,看下你是否能够选择或者作答出正确答案。

python培训基础测试一

下面代码中func1(a)的结果是:


def func1(a):

sums = sum(map(lambda x: x + 1, a[-3:]))

return sums

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

func1(a)

A 9

B 13

C 10

python培训基础测试二

有如下两个列表:


list1 = [(2),(0),(1),(8) ]

list2 = [(2,),(0,),(1,),(8,)]

那么,type(list1[0])和type(list2[0])分别是:

A int tuple

B int int

C tuple tuple

python培训基础测试三

下面代码中func2(a)的结果是:


def func2(a):

b = {}

b = b.fromkeys(a)

return (len(b.keys()))

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

print (func2(a))

A 11

B 6

C 5

python培训基础测试四

定义如下的字符串和列表:


a = 'I love PythonSomething!'

b = 'I love PythonSomething!'

c = [1, 2, 3]

d = [1, 2, 3]

那么,a is b和c is d的结果分别是:

A False True

B True True

C True False

python培训基础测试五

下面代码的输出结果为:


import copy

a = [2,[0,1],8]

b = copy.copy(a)

a[1].append(3)

print(b)

c = copy.deepcopy(a)

a[1].append(4)

print (c)

A [2, [0, 1, 3], 8]

[2, [0, 1, 3], 8]

B [2, [0, 1, 3], 8]

[2, [0, 1, 4], 8]

C [2, [0, 1, 4], 8]

[2, [0, 1, 4], 8]

python培训基础测试六

下面代码中f3的输出结果为:


def append_list(val, list=[]):

list.append(val)

return list

f1 = append_list(1)

f2 = append_list(2, [])

f3 = append_list('Python')

A [1, 'Python']

B ['Python']

C [1, 2, 'Python']

python培训基础测试七

下面代码中 func3() + func4()的结果为:


x = 10

def func3():

x = 3

return x**2

def func4():

return x + 5

func3() + func4()

A 24

B 21

C 115

python培训基础测试八

下面代码中stu2.score的结果为:


class Student:

score = []

stu1 = Student()

stu2 = Student()

stu1.score.append(99)

stu1.score.append(96)

stu2.score.append(98)

A [99, 96, 98]

B [98]

C [99, 98]

python培训基础测试九

二分查找是非常经典的算法。已经有如下定义,请完善代码,实现二分查找算法:


def binary_search(list, item):

'''

:param list: 列表

:param item: 要查找的元素

:return: item在list中的索引,若不在list中返回None

'''

python培训基础测试十

爬虫是Python的一大应用方向。请通过Python抓取猫眼电影或者豆瓣电影评分前100的电影信息。


点击咨询直接了解更多相关资料,我在惠州北大青鸟新方舟等你。

 

本文内容转载自网络,版权归原作者所有,如有侵权请联系我们进行删除。


标签:惠州计算机软件培训惠州计算件软件开发惠州计算机软件基础惠州计算机Python软件开发惠州Python培训学校惠州Python培训python基础教程python是什么python教程python入门


惠州计算机学校排行
标签列表
网站分类
文章归档
最近发表