1. 程式人生 > >小白學python之獲取物件資訊_學習筆記

小白學python之獲取物件資訊_學習筆記

本文以廖雪峰的官方網站為參考來學習python的。其學習連結為廖雪峰小白學python教程

本文是學習到python的獲取物件資訊。參考連結廖雪峰python獲取物件資訊

使用type()

print(type(123))
print(type('str'))
print(type(None))
print(type(abs))

執行結果為:

<class 'int'>
<class 'str'>
<class 'NoneType'>
<class 'builtin_function_or_method'>

print(type(123)==type(456))
print(type(123)==int)
print(type('abc')==type('123'))
print(type('abc')==str)
print(type('abc')==type(123))

執行結果為:

True
True
True
True
False
 

import types
def fn():
    pass
print(type(fn))
print(type(fn)==types.FunctionType)
print(type(abs))
print(type(abs)==types.BuiltinFunctionType)
print(type(lambda x: x))
print(type(lambda x:x)==types.LambdaType)
print(type(x for x in range(10)))
print((type(x for x in range(10)))==types.GeneratorType)

執行結果為:

<class 'function'>
True
<class 'builtin_function_or_method'>
True
<class 'function'>
True
<class 'generator'>
True
 

使用isinstance()

筆記

下面的程式碼就可以判斷是否是list或者tuple:

print(isinstance('a',str))
print(isinstance(123,int))
print(isinstance(b'a',bytes))
print(isinstance([1,2,3],(list,tuple)))
print(isinstance((1,2,3),(list,tuple)))

執行結果為:

True
True
True
True
True

使用dir()

print(dir('ABC'))
print(len('ABC'))
print('ABC'.__len__())
class MyDog(object):
    def __len__(self):
        return 100
dog = MyDog()
print(len(dog))
print('ABC'.lower())

執行結果為:

['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isascii', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
3
3
100
abc

筆記:

配合getattr()setattr()以及hasattr(),可以直接操作一個物件的狀態。如下程式碼。


class MyObject(object):
    def __init__(self):
        self.x = 9
    def power(self):
        return self.x * self.x

obj = MyObject()
print(hasattr(obj, 'x'))
print(obj.x)
print(hasattr(obj, 'y'))
setattr(obj, 'y', 19)
print(hasattr(obj, 'y'))
print(getattr(obj,'y'))
print(obj.y)

執行結果:

True
9
False
True
19
19

筆記

如果試圖獲取不存在的屬性,會丟擲AttributeError的錯誤:

執行

getattr(obj,'z')

則會報錯:

Traceback (most recent call last):
  File "**********", line ***, in <module>
    getattr(obj,'z')
AttributeError: 'MyObject' object has no attribute 'z'

筆記

可以傳入一個default引數,如果屬性不存在,就返回預設值:

執行:

print(getattr(obj,'z',404))

結果:

404

 

print(hasattr(obj,'power'))
print(getattr(obj,'power'))
fn = getattr(obj, 'power')
print(fn)
print(fn())

執行結果:

True
<bound method MyObject.power of <__main__.MyObject object at 0x0000000001E81CC0>>
<bound method MyObject.power of <__main__.MyObject object at 0x0000000001E81CC0>>
81

小結看不懂,沒有使用過。

def readImage(fp):
    if hasattr(fp,'read'):
        return readData(fp)
    return None