python 獲取變數名的方法

G8bao7發表於2015-05-26
參考:


a='abc' 
b='def' 
c='ghi' 

t=a,b 

for i in t: 
  if i == 'def': 
    for x, y in locals().items(): 
      if i == y and x != 'i': 
        print x 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26250550/viewspace-1672548/,如需轉載,請註明出處,否則將追究法律責任。

相關文章