91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中怎么使用常見函數使

發布時間:2020-08-26 17:29:47 來源:億速云 閱讀:153 作者:Leah 欄目:編程語言

這篇文章運用簡單易懂的例子給大家介紹Python中怎么使用常見函數使,代碼非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

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要用括號括起來。

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]不可能為假,至少有一個元素

關于Python中怎么使用常見函數使就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蕲春县| 武宣县| 临清市| 芦山县| 苍溪县| 漯河市| 新疆| 安阳县| 九台市| 金阳县| 集安市| 习水县| 侯马市| 定襄县| 东乡县| 冷水江市| 五家渠市| 河间市| 东台市| 尤溪县| 英德市| 阳谷县| 高淳县| 北辰区| 本溪| 乡城县| 安吉县| 乌拉特后旗| 桐乡市| 遂昌县| 汉阴县| 靖安县| 新营市| 民县| 吉木萨尔县| 鲁甸县| 河南省| 和平县| 新平| 霞浦县| 赫章县|