[Python]Keywords ArgumentsをDynamicに渡す方法
- November 2nd, 2009
- Posted in Python
- Write comment
Dynamic Kyewords Arguments
def test(arg1, arg2):
test(**{'argr2': 'abcd'})
print arg1, arg2
Popularity: 1% [?]
Dynamic Kyewords Arguments
def test(arg1, arg2):
test(**{'argr2': 'abcd'})
print arg1, arg2
Popularity: 1% [?]
No comments yet.