博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 装饰器
阅读量:6530 次
发布时间:2019-06-24

本文共 1729 字,大约阅读时间需要 5 分钟。

# python 装饰器

标签(空格分隔): 装饰器

定义:本质是函数,用于装饰器他函数,为其他函数添加附加功能。
原则:
1、不能修改被装饰的函数源代码,
2、不能修改调用方式

一个简单的装饰器例子:

import time
def deco(func):
def wrapper():
start_time= time.time()
func()
end_time = time.time()
print("the func run time %s" %(end_time-start_time))
return wrapper

@deco

def test():
print(" start the test")
time.sleep(3)
print(" end the test")

test()

---输出:

start the test
end the test
the func run time 3.000171661376953

---同时装饰带参和不带参数的函数
import time
def deco(func):
def wrapper(*args,**kwargs):
start_time= time.time()
func(*args,**kwargs)
end_time = time.time()
print("the func run time %s" %(end_time-start_time))
return wrapper

@deco

def test():
print(" start the test")
time.sleep(3)
print(" end the test")
@deco
def test1(a,b):
print(" start the test1")
time.sleep(3)
print("a+b=%s"%(a+b))
print(" end the test1")

test()

test1(4,6)

---输出

start the test
end the test
the func run time 3.000171661376953
start the test1
a+b=10
end the test1
the func run time 3.000171661376953

---
模块导入的4种方式:
import module
from module.xx.xx import xx
from module.xx.xx import xx as rename
from module.xx.xx import *

模块:json

import json
ab=[1,5,3,{'4': 5, '6': 7}]
pstr = json.dumps(ab) #encode
print(pstr)

print(json.loads(pstr)) #decode

输出:

[1, 5, 3, {"4": 5, "6": 7}]
[1, 5, 3, {'4': 5, '6': 7}]

dump:方式

import json
ab=[1,5,3,{'4': 5, '6': 7}]
with open("user_passwd.txt",'w') as fp:
json.dump(ab,fp)

输出到文件:

user_passwd.txt:
[1, 5, 3, {"4": 5, "6": 7}]

load:方式

with open("user_passwd.txt",'r') as fp:
info=json.load(fp)
print(info)

输出:

[1, 5, 3, {'6': 7, '4': 5}]

Encode过程,是把python对象转换成json对象的一个过程,常用的两个函数是dumps和dump函数。两个函数的唯一区别就是dump把python对象转换成json对象生成一个fp的文件流,而dumps则是生成了一个字符串

在此输入正文

 

转载于:https://www.cnblogs.com/liuzh6/p/8910716.html

你可能感兴趣的文章
Opera 出售细节曝光:昆仑出资1.68亿美元
查看>>
CentOS 5.3 下快速安装配置 PPTP ××× 服务器
查看>>
产品经理学习总结之技术和设计篇
查看>>
23种设计模式(15):备忘录模式
查看>>
java基础学习总结——IO流
查看>>
iOS获取APP ipa 包以及资源文件
查看>>
CentOS 7 关闭启动防火墙
查看>>
Vue-选项卡切换
查看>>
linux网络命令
查看>>
nodejs ejs 请求路径和静态资源文件路径
查看>>
记一次思维转变的时刻
查看>>
Oil Deposits
查看>>
poj3984 迷宫问题(简单搜索+记录路径)
查看>>
Linux 服务器buff/cache清理
查看>>
算法试题 及其他知识点
查看>>
php课程---Json格式规范需要注意的小细节
查看>>
hadoop hdfs notes
查看>>
Java反射机制详解(3) -java的反射和代理实现IOC模式 模拟spring
查看>>
(2编写网络)自己动手,编写神经网络程序,解决Mnist问题,并网络化部署
查看>>
【转】如何使用分区助手完美迁移系统到SSD固态硬盘?
查看>>