2013-12-20 131 views
1

我有一個關於python的問題。Python:檢查變量類型

我有變量a,b,cd

和我有以下行:

if not isinstance(a, int) or not isinstance(b, int) \ 
    or not isinstance(c, int) or not isinstance(d, int) \ 
    or not isinstance(a, float) or not isinstance(b, float)\ 
    or not isinstance(c, float) or not isinstance(d, float): 
    do something 

是否有可能使代碼更短?

謝謝!

+5

由於這兩個'isinstance(一,INT)'或'isinstance(a,float)'將會是False,smartass的答案是if總是正確的並且可以完全省略... – RemcoGerlich

+0

我只是省略了檢查並在下面的代碼中捕獲任何結果錯誤。 – Matthias

+0

請看看我的回答,請,看到問題.... – eyquem

回答

5

ü應該使用all

if not all(isinstance(var, (int, float)) for var in [a, b, c, d]): 
    # do stuff 

請注意,您可以同時提供int和 '浮動' 的isinstance通話。

+1

使用生成器表達式。否則所有元素都會被測試。 – falsetru

+1

它應該不是全部(...)或任何(不是...)。不是嗎? – falsetru

+0

感謝這兩個評論,我真的搞砸了一下代碼。 –

1
>>> a = b = c = d = [] 
>>> any(not isinstance(x, (int, float)) for x in [a,b,c,d]) 
True 
>>> d = 0 
>>> any(not isinstance(x, (int, float)) for x in [a,b,c,d]) 
False 
+0

非常感謝! – SomeOne

2

嘗試以下操作:

>>> a = 1 
>>> b = 1.0 
>>> c = 123 
>>> d = 233 
>>> any((type(var) in (int, float) for var in [a,b,c,d])) 
True 
>>> c = 'hello' 
>>> any((type(var) in (int, float) for var in [a,b,c,d])) 
True 
>>> 
+0

非常感謝! – SomeOne

0

其實,你寫的東西等於

if True: 
    do_somthing 
    pass 
+0

你應該發展你的答案 – eyquem

-3

很顯然,你沒有采取足夠的重視RemcoGerlich的評論,因爲你upvoted和接受了毫無意義的答案。
當我寫這篇文章的時候,另外4人提出了同樣無意義的答案。
這是不可思議的。
你會看到更好的嗎? :

def OP(a,b,c): 
    return not isinstance(a, int)\ 
      or not isinstance(b, int)\ 
      or not isinstance(c, int)\ 
      or not isinstance(a, float)\ 
      or not isinstance(b, float)\ 
      or not isinstance(c, float) 

def AZ(a,b,c): 
    return all(isinstance(var, (int, float)) 
       for var in [a, b, c]) 

gen = ((a,b,c) for a in (1, 1.1 ,'a') 
     for b in (2, 2.2, 'b') for c in (3, 3.3, 'c')) 

print '     OPv | AZv  OPv is AZv\n'\ 
     '     -----|----- -----------' 
OPV_list = [] 
for a,b,c in gen: 
    OPv = OP(a,b,c) 
    OPV_list.append(OPv) 
    AZv = AZ(a,b,c) 
    print '%3r %3r %3r %s | %s  %s'\ 
      % (a,b,c,OPv,AZv,OPv is AZv if OPv is not AZv else '') 

print '------------- ----' 
print 'all(OPV_list) : ',all(OPV_list) 

結果
OPV =你
AZV =無謂答案
予限定於,B,C使之短

    OPv | AZv  OPv is AZv 
       -----|----- ----------- 
    1 2 3 True | True  
    1 2 3.3 True | True  
    1 2 'c' True | False  False 
    1 2.2 3 True | True  
    1 2.2 3.3 True | True  
    1 2.2 'c' True | False  False 
    1 'b' 3 True | False  False 
    1 'b' 3.3 True | False  False 
    1 'b' 'c' True | False  False 
1.1 2 3 True | True  
1.1 2 3.3 True | True  
1.1 2 'c' True | False  False 
1.1 2.2 3 True | True  
1.1 2.2 3.3 True | True  
1.1 2.2 'c' True | False  False 
1.1 'b' 3 True | False  False 
1.1 'b' 3.3 True | False  False 
1.1 'b' 'c' True | False  False 
'a' 2 3 True | False  False 
'a' 2 3.3 True | False  False 
'a' 2 'c' True | False  False 
'a' 2.2 3 True | False  False 
'a' 2.2 3.3 True | False  False 
'a' 2.2 'c' True | False  False 
'a' 'b' 3 True | False  False 
'a' 'b' 3.3 True | False  False 
'a' 'b' 'c' True | False  False 
------------- ---- 
all(OPV_list) : True