※ 引述《wayne670225 (北極熊在英國)》之銘言:
: 請問一下於python 2.7 中
: self.currentini = {'debug' : 'on'}
: def verify_currentlyini(self,(key,value)):
: self.currentini[str(key).split('$')[1]]=str(value)
: 但是更改python 3.6
: self.currentini = {'debug' : 'on'}
: def verify_currentlyini(self,key,value):
: self.currentini[str(key).split('$')[1]]=str(value)
: TypeError: modify_currentlyini() missing 1 required positional argument:
: 'value'
: 請問大家該如何更改我的程式 ?
self.currentint = {'debug' : 'on'}
def varify_currentlyini(self, key_value):
key, value = key_value
self.currentini[str(key).split('$')[1]] =str(value)
主要是傳入的時候不能直接宣告他是一個tuple
所以把tuple設成一個變數
讀進來的時候再拆開
以下是範例
def demo(c):
a,b = c
print(b)
demo(('Hello','world'))