Python-基础函数与常用模块考核

时间:2021-03-14 23:39:39

第二模块考核(2019/ 03/ 03)

Python-基础函数与常用模块考核

### 第一模块内容
1.请写出 “路飞学城alex” 分别用utf - 8和gbk编码所占的位数(口述)
➜  ~ python3
>>> bytes("你", "gbk")
b'\xc4\xe3'
>>> bytes("a", "gbk")
b'a'
>>> bytes("你", "utf-8")
b'\xe4\xbd\xa0'
>>> bytes("a", "utf-8")
b'a'
2.python有哪几种数据类型,分别什么?
 可变:Number,String,Tuple
 不可变:List,Dictionary,Set
### 第二模块内容
1.创建一个闭包函数需要满足哪几点。(口述)
  有内嵌函数,引用一个定义在闭合范围内的变量,外部函数必须返回内嵌函数
########## 闭包的原理解释
>>> def make_printer(msg1, msg2):
def printer():
print msg1, msg2
return printer
>>> printer = make_printer('Foo', 'Bar') # 形成闭包 >>> printer.__closure__ # 返回cell元组
(<cell at 0x03A10930: str object at 0x039DA218>, <cell at 0x03A10910: str object at 0x039DA488>) >>> printer.__closure__[0].cell_contents # 第一个外部变量
'Foo'
>>> printer.__closure__[1].cell_contents # 第二个外部变量
'Bar'
2.序列化模块json,xml,pickle的区别是什么?(口述)
 参考文章:https://www.cnblogs.com/qing-add/p/5225048.html
3.迭代器和生成器的区别, 在python中它们的原理是什么。(口述) 
 参考文章:http://python.jobbole.com/87805/
      http://www.runoob.com/python3/python3-iterator-generator.html
      https://www.cnblogs.com/wj-1314/p/8490822.html
      https://www.cnblogs.com/cicaday/p/python-decorator.html
4.解释一下包和模块的含义。 (口述)
 参考文章:https://www.cnblogs.com/935415150wang/p/7091227.html

Python-基础函数与常用模块考核

5.请阐述一下代码含义
  BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))

 6.解释以下代码含义 (口述)
  
from functools import reduce
  reduce(lambda x, y: x + y, range(10))

 7. 字符串“Luffy”,将小写字母全部转换成大写字母,将大写字幕转换成小写字母。(编程)

word = "Luffy"
new_word = word.swapcase()
print("new_word:",new_word)
str = "www.runoob.com"
print(str.upper()) # 把所有字符中的小写字母转换成大写字母
print(str.lower()) # 把所有字符中的大写字母转换成小写字母
print(str.capitalize()) # 把第一个字母转化为大写字母,其余小写
print(str.title()) # 把每个单词的第一个字母转化为大写,其余小写

 8. 编写装饰器,为每个函数加上统计运行时间的功能。(编程)

import time
def timmer(func):
def inner():
star_time = time.time()
func()
wait_time = time.time() - star_time
print("%s运行时间为:%s" %(func.__name__,wait_time))
return inner
date = time.localtime() @timmer
def log_1():
print(date,date.tm_year,date.tm_mon) log_1()
import time
def timmer(func):
def wrapper(*args,**kwargs):
start= time.time()
func(*args,**kwargs)
stop = time.time()
print('执行时间是%s'%(stop-start))
return wrapper
@timmer
def exe():
print('你愁啥!')
exe()
import time
def timmer(func): def inner():
start_time = time.time()
func()
wait_time = time.time() - start_time
print("%s 运行时间:" % func.__name__, wait_time)
return inner a = time.localtime() @timmer
def log_1():
print('%s-%s-%s'%(a.tm_year, a.tm_mon, a.tm_mday))
@timmer
def log_2():
time.sleep(2)
print('%s-%s-%s' % (a.tm_year, a.tm_mon, a.tm_mday))
@timmer
def log_3():
time.sleep(4)
print('%s-%s-%s' % (a.tm_year, a.tm_mon, a.tm_mday))
log_1()
log_2()
log_3()
"""
2018-3-21
log_1 运行时间: 3.0994415283203125e-05
2018-3-21
log_2 运行时间: 2.0049030780792236
2018-3-21
log_3 运行时间: 4.004503965377808
"""

 9. 递归实现斐波那契函数。(编程)

list = []
def fib(max):
n,a,b = 0,0,1
while n < max:
a,b = b,a+b
#yield b
n = n+1
list.append(b)
#print(b)
#return 'done'
num = fib(5)
print(list)
'''
print(next(num))
print(next(num))
print(next(num))
'''

 10. random模块,写一个包含大小写字母和数字的6位随机验证码。(编程)

import random
import string wrong_word = "".join(random.sample('a-z'+'A-Z'+'0-9',6))
right_word = "".join(random.sample(string.ascii_uppercase+string.ascii_lowercase+string.digits,6))print(right_word )
print(wrong_word )
print(wrong_word )

其他同学的模块考核总结:https://www.cnblogs.com/wj-1314/p/8534245.html

Python-基础函数与常用模块考核

扩展

【闭包实现快速给不同项目记录日志】

import logging
def log_header(logger_name):
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s [%(name)s] %(levelname)s %(message)s',
datefmt='%Y-%m-%d %H:%M:%S')
logger = logging.getLogger(logger_name) def _logging(something,level):
if level == 'debug':
logger.debug(something)
elif level == 'warning':
logger.warning(something)
elif level == 'error':
logger.error(something)
else:
raise Exception("I dont know what you want to do?" )
return _logging project_1_logging = log_header('project_1') project_2_logging = log_header('project_2') def project_1(): #do something
project_1_logging('this is a debug info','debug')
#do something
project_1_logging('this is a warning info','warning')
# do something
project_1_logging('this is a error info','error') def project_2(): # do something
project_2_logging('this is a debug info','debug')
# do something
project_2_logging('this is a warning info','warning')
# do something
project_2_logging('this is a critical info','error') project_1()
project_2() ---------------------
作者:chaseSpace-L
来源:CSDN
原文:https://blog.csdn.net/sc_lilei/article/details/80464645
版权声明:本文为博主原创文章,转载请附上博文链接!

Python-基础函数与常用模块考核的更多相关文章

  1. 第六章:Python基础の反射与常用模块解密

    本课主题 反射 Mapping 介绍和操作实战 模块介绍和操作实战 random 模块 time 和 datetime 模块 logging 模块 sys 模块 os 模块 hashlib 模块 re ...

  2. Python基础学习之常用模块

    1. 模块 告诉解释器到哪里查找模块的位置:比如sys.path.append('C:/python') 导入模块时:其所在目录中除源代码文件外,还新建了一个名为__pycache__ 的子目录,这个 ...

  3. python基础&comma;函数&comma;面向对象&comma;模块练习

    ---恢复内容开始--- python基础,函数,面向对象,模块练习 1,简述python中基本数据类型中表示False的数据有哪些? #  [] {} () None 0 2,位和字节的关系? # ...

  4. Python基础-函数参数

    Python基础-函数参数 写在前面 如非特别说明,下文均基于Python3 摘要 本文详细介绍了函数的各种形参类型,包括位置参数,默认参数值,关键字参数,任意参数列表,强制关键字参数:也介绍了调用函 ...

  5. python基础——函数的参数

    python基础——函数的参数 定义函数的时候,我们把参数的名字和位置确定下来,函数的接口定义就完成了.对于函数的调用者来说,只需要知道如何传递正确的参数,以及函数将返回什么样的值就够了,函数内部的复 ...

  6. python基础—函数嵌套与闭包

    python基础-函数嵌套与闭包 1.名称空间与作用域 1 名称空间分为: 1 内置名称空间   内置在解释器中的名称 2 全局名称空间   顶头写的名称 3 局部名称空间 2 找一个名称的查找顺序: ...

  7. python基础—函数装饰器

    python基础-函数装饰器 1.什么是装饰器 装饰器本质上是一个python函数,它可以让其他函数在不需要做任何代码变动的前提下增加额外功能. 装饰器的返回值是也是一个函数对象. 装饰器经常用于有切 ...

  8. Python学习—基础篇之常用模块

    常用模块 模块,用一砣代码实现了某个功能的代码集合. 类似于函数式编程和面向过程编程,函数式编程则完成一个功能,其他代码用来调用即可,提供了代码的重用性和代码间的耦合.而对于一个复杂的功能来,可能需要 ...

  9. python基础&equals;&equals;&equals;正则表达式,常用函数re&period;split和re&period;sub

    sub的用法: >>> rs = r'c..t' >>> re.sub(rs,'python','scvt dsss cvrt pocdst') 'scvt dss ...

随机推荐

  1. phpMyAdmin中sql-parser组件的使用

    版权声明:本文由陈苗原创文章,转载请注明出处: 文章原文链接:https://www.qcloud.com/community/article/206 来源:腾云阁 https://www.qclou ...

  2. &lt&semi;string&gt&semi;和&lt&semi;string&period;h&gt&semi;的区别

    转自:http://blog.csdn.net/houjixin/article/details/8648969 在C++开发过程中经常会遇到两个比较容易混淆的头文件引用#include<str ...

  3. &lbrack;0&rsqb; CollectionBase与索引符DictionaryBase与迭代器

    对于简单数组来说,需要用固定的大小来初始化,才能使用: Animal[] myAnimal=new Animal[10]; myAnimal[0]=new Cow("Ken"); ...

  4. Apache Spark RDD(Resilient Distributed Datasets)论文

    Spark RDD(Resilient Distributed Datasets)论文 概要 1: 介绍 2: Resilient Distributed Datasets(RDDs) 2.1 RDD ...

  5. BZOJ4554&colon; &lbrack;Tjoi2016&amp&semi;Heoi2016&rsqb;游戏 luoguP2825 loj2057

    题面描述:尽可能多的放置符合要求的炸弹. 分析: 在i,j处放置炸弹,则在第i行,上一个硬石头之后,下一个硬石头之前,第j列,上一个硬石头之后,下一个硬石头之前,不能再次放置炸弹. 首先,这个题,一看 ...

  6. 智表ZCELL产品V1&period;4&period;0开发API接口文档 与 产品功能清单

    为了方便大家使用ZCELL,应网友要求,整理编写了相关文档,现与产品一起同步发布,供大家下载使用,使用过程中如有疑问,请与我QQ联系. 智表(ZCELL)V1.4.0版本  功能清单文档下载地址: 功 ...

  7. powerdesigner添加mysql的字符集ENGINE和DEFAULT CHARACTER SET

    工具栏->database->edit current DBMS 然后,选中:MYSQL50::Script\Objects\Table\Options 在options末尾添加: ENG ...

  8. &sol;etc&sol;vim&sol;vimrc的一个的配置

    (转)Vim 配置文件===/etc/vimrc "===================================================================== ...

  9. CCNode的属性说明

    class CC_DLL CCNode : public CCObject { protected://属性列表 float m_fRotationX; ///x轴旋转角度 float m_fRota ...

  10. &period;Net MVC4 上传大文件,并保存表单

    1. 前台 cshtml </pre><pre name="code" class="csharp">@model BLL.BLL.Pr ...