当前位置: 首页 > Python编程 > Python编程实战技能 > Python编程基础入门 > Python之常见函数使用方法详解

Python之常见函数使用方法详解

发布时间:2020年09月27日 10:45:42 来源: 点击量:510

【摘要】python eval() hasattr() getattr() setattr() 函数使用方法详解eval() 函数 --- 将字符串str当成有效的表达式来求值并返回计算结

python eval() hasattr() getattr() setattr() 函数使用方法详解

eval() 函数 --- 将字符串str当成有效的表达式来求值并返回计算结果。

语法:eval(source[, globals[, locals]]) ---> value

参数:

    source:一个Python表达式或函数compile()返回的代码对象

    globals:可选。必须是dictionary

    locals:可选。任意map对象

实例1:

可以把list,tuple,dict和string相互转化。

a = '[[1,2], [3,4], [5,6], [7,8]]'
a = '[{'name':'haha','age':18}]'
print(type(a), a) #<class 'str'>
b = eval(a)
print(type(b), b) #<class 'list'>
c = '{"name":"aaa", "age":18}'
print(type(c), c) #<class 'str'>
d = eval(c)
print(type(d), d) #<class 'dict'>
e = "([1,2], [3,4], [5,6], [7,8], (9,0))"
print(type(e), e)
f = eval(e)
print(type(f), f) #<class 'tuple'>

运行结果:

<class 'str'> [[1,2], [3,4], [5,6], [7,8]]
<class 'list'> [[1, 2], [3, 4], [5, 6], [7, 8]]
<class 'str'> {"name":"aaa", "age":18}
<class 'dict'> {'name': 'aaa', 'age': 18}
<class 'str'> ([1,2], [3,4], [5,6], [7,8], (9,0))
<class 'tuple'> ([1, 2], [3, 4], [5, 6], [7, 8], (9, 0))

实例2:

在编译语言里要动态地产生代码,基本上是不可能的,但动态语言是可以,意味着软件已经部署到服务器上了,但只要作很少的更改,只好直接修改这部分的代码,就可立即实现变化,不用整个软件重新加。

a=1
g={'a':20}
eval("a+1",g)
运行结果:21

hasattr(object, name) 函数:

判断一个对象里面是否有name属性或者name方法,返回bool值,有name属性返回True,否则返回False。

注意: name要用括号括起来。

相关推荐:《Python视频教程》

class function_demo():
    name = 'demo'
    def run(self):
        return "hello function"
functiondemo = function_demo()
res = hasattr(functiondemo, 'name')  #判断对象是否有name属性,True
res = hasattr(functiondemo, "run") #判断对象是否有run方法,True
res = hasattr(functiondemo, "age") #判断对象是否有age属性,Falsw
print(res)

getattr(object, name[,default]) 函数:

获取对象object的属性或者方法,如果存在则打印出来,如果不存在,打印默认值,默认值可选。

注意:如果返回的是对象的方法,则打印结果是:方法的内存地址,如果需要运行这个方法,可以在后面添加括号()

class function_demo():
    name = 'demo'
    def run(self):
        return "hello function"
functiondemo = function_demo()
getattr(functiondemo, 'name') #获取name属性,存在就打印出来--- demo 
getattr(functiondemo, "run") #获取run方法,存在打印出 方法的内存地址---<bound method function_demo.run of 
<__main__.function_demo object at 0x10244f320>>
getattr(functiondemo, "age") #获取不存在的属性,报错如下:
Traceback (most recent call last):
  File "/Users/liuhuiling/Desktop/MT_code/OpAPIDemo/conf/OPCommUtil.py", line 39, in <module>
    res = getattr(functiondemo, "age")
AttributeError: 'function_demo' object has no attribute 'age'
getattr(functiondemo, "age", 18)  #获取不存在的属性,返回一个默认值

setattr(object, name,values) 函数:

给对象的属性赋值,若属性不存在,先创建再赋值。

class function_demo():
    name = 'demo'
    def run(self):
        return "hello function"
functiondemo = function_demo()
res = hasattr(functiondemo, 'age')  # 判断age属性是否存在,False
print(res)
setattr(functiondemo, 'age', 18 )  #对age属性进行赋值,无返回值
res1 = hasattr(functiondemo, 'age') #再次判断属性是否存在,True
print(res1)

 综合使用:

class function_demo():
    name = 'demo'
    def run(self):
        return "hello function"
functiondemo = function_demo()
res = hasattr(functiondemo, 'addr') # 先判断是否存在
if res:
    addr = getattr(functiondemo, 'addr')
    print(addr)
else:
    addr = getattr(functiondemo, 'addr', setattr(functiondemo, 'addr', '北京首都'))
    #addr = getattr(functiondemo, 'addr', '河南许昌')
    print(addr)

python中 and和or的用法:

python中的and从左到右计算表达式,若所有值为真,则返回最后一个值,若存在假,返回第一个假值。

or 也是从左到右计算表达式,返回第一个为真的值。

# a 与b 均为真,返回最后一个为真的值,返回b的值
a = 1
b = 2
print(a and b)  >>>> 2
# c 与 d 有一个为假,返回第一个为假的值,返回c的值
c = 0
d = 2
print(c and d) >>>>>0
# e 与f 均为真,返回第一个 为真的值,返回e的结果
e = 1
f = 2
print(e or f) >>>>>>1
# g 与h 为假,返回第一个 为真的值,返回h的结果
g= ''
h=1
print(g or h)  >>>>>1

类似三目表达式的用法:bool? a : b

a ='first'
b ='second'
1and a or b   # 等价于 bool = true时的情况,a与b均为真
'first'
>>>0and a or b   # 等价于 bool = false时的情况
'second'
>>> a =''
>>>1and a or b   # a为假时,则出现问题
'second'
>>>(1and[a]or[b])[0]# 安全用法,因为[a]不可能为假,至少有一个元素

分享到: 编辑:wangmin

就业培训申请领取
您的姓名
您的电话
意向课程
点击领取

环球青藤

官方QQ

扫描上方二维码或点击一键加群,免费领取大礼包,加群暗号:青藤。 一键加群

绑定手机号

应《中华人民共和国网络安全法》加强实名认证机制要求,同时为更加全面的体验产品服务,烦请您绑定手机号.

预约成功

本直播为付费学员的直播课节

请您购买课程后再预约

环球青藤移动课堂APP 直播、听课。职达未来!

安卓版

下载

iPhone版

下载
环球青藤官方微信服务平台

刷题看课 APP下载

免费直播 一键购课

代报名等人工服务

课程咨询 学员服务 公众号

扫描关注微信公众号

APP

扫描下载APP

返回顶部