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

溫馨提示×

溫馨提示×

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

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

Python中映射是什么

發布時間:2020-08-05 15:32:04 來源:億速云 閱讀:265 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關Python中映射是什么的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

python中的反射功能是由以下四個內置函數提供:hasattr、getattr、setattr、delattr,改四個函數分別用于對對象內部執行:檢查是否含有某成員、獲取成員、設置成員、刪除成員。

獲取成員: getattr

class Foo:
    def __init__(self, name, age):
        self.name = name
        self.age = age
obj = Foo('klvchen', 18)
inp = input('>>>')
v = getattr(obj, inp)
print(v)

運行結果:

>>>name
klvchen
class Foo:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def show(self):
        return "%s-%s" %(self.name, self.age)
obj = Foo('klvchen', 18)
func = getattr(obj, 'show')
print(func)
res = func()
print(res)

運行結果:

<bound method Foo.show of <__main__.Foo object at 0x00000234F6942588>>
klvchen-18

檢查是否含有成員: hasattr

class Foo:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def show(self):
        return "%s-%s" %(self.name, self.age)
obj = Foo('klvchen', 18)
print(hasattr(obj, 'name1'))

運行結果:

False

設置成員: setattr

class Foo:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def show(self):
        return "%s-%s" %(self.name, self.age)
obj = Foo('klvchen', 18)
# print(hasattr(obj, 'name1'))
setattr(obj, 'key', 'value')
print(obj.key)

運行結果:

value

刪除成員: delattr

class Foo:
    def __init__(self, name, age):
        self.name = name
        self.age = age
    def show(self):
        return "%s-%s" %(self.name, self.age)
obj = Foo('klvchen', 18)
print(obj.name)
delattr(obj, 'name')
print(obj.name)

運行結果:

klvchen
AttributeError: 'Foo' object has no attribute 'name'

通過字符串的形式操作對象中的成員

class Foo:
    stat = '666'
    def __init__(self, name, age):
        self.name = name
        self.age = age
res = getattr(Foo, 'stat')
print(res)

運行結果:

666

創建兩個文件,s1.py 和 s2.py

s2.py 內容如下:

NAME = 'klvchen'
def func():
    return 'func'

s1.py 內容如下:

import s2
res1 = getattr(s2, 'NAME')
print(res1)
res2 = getattr(s2, 'func')
result = res2()
print(result)

運行 s1.py 文件:

klvchen
func

創建兩個文件,s1.py 和 s2.py

s2.py 內容如下:

NAME = 'klvchen'
def func():
    return 'cwe'
class Foo:
    def __init__(self):
        self.name = 666

s1.py 內容如下:

import s2
res1 = getattr(s2, 'NAME')
print(res1)
res2 = getattr(s2, 'func')
result = res2()
print(result)
cls = getattr(s2, 'Foo')
print(cls)
obj = cls()
print(obj)
print(obj.name)

運行 s1.py 文件,運行結果:

klvchen
cwe
<class 's2.Foo'>
<s2.Foo object at 0x000001CFCDBB2438>
666

創建兩個文件,s1.py 和 s2.py

s2.py 內容如下:

def f1():
    return '首頁'
def f2():
    return '新聞'
def f3():
    return '精華'

s1.py 內容如下:

import s2
inp = input('請輸入要查看的URL: ')
if hasattr(s2, inp):
    func = getattr(s2, inp)
    result = func()
    print(result)
else:
    print('404')

運行 s1.py 文件,運行結果:

請輸入要查看的URL: f1
首頁

感謝各位的閱讀!關于Python中映射是什么就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

甘孜| 凤凰县| 通州区| 璧山县| 蓝田县| 织金县| 永福县| 巫溪县| 枣庄市| 东辽县| 顺平县| 达尔| 永宁县| 肃北| 剑川县| 长乐市| 陵川县| 许昌市| 阳曲县| 嘉善县| 揭西县| 奇台县| 万盛区| 磐石市| 黄冈市| 建水县| 应用必备| 新安县| 定陶县| 宕昌县| 东乡族自治县| 志丹县| 四川省| 宝丰县| 顺昌县| 本溪| 永德县| 建宁县| 黄平县| 永新县| 临潭县|