What's the canonical way to check for type in Python?

后端 未结 13 1079
南旧
南旧 2020-11-21 07:34

What is the best way to check whether a given object is of a given type? How about checking whether the object inherits from a given type?

Let\'s say I have an objec

13条回答
  •  忘掉有多难
    2020-11-21 07:51

    You can check with the below line to check which character type the given value is:

    def chr_type(chrx):
        if chrx.isalpha()==True:
            return 'alpha'
        elif chrx.isdigit()==True:
            return 'numeric'
        else:
            return 'nothing'
    
    chr_type("12)
    

提交回复
热议问题