2017-10-21 118 views

回答

2

在任務,目標既可以是列表和元組:

a, b, c = value # assign to a tuple of names 
[a, b, c] = value # assign to a list of names 

不同的是化妝品到Python;請參閱Assignment statement reference documentation

演示:

>>> parseprint('[a, b, c] = value') 
Module(body=[ 
    Assign(targets=[ 
     List(elts=[ 
      Name(id='a', ctx=Store()), 
      Name(id='b', ctx=Store()), 
      Name(id='c', ctx=Store()), 
      ], ctx=Store()), 
     ], value=Name(id='value', ctx=Load())), 
    ]) 
相關問題