Python解释器中执行如下代码:
'{2},{0},{1}'.format('You','need','Python')
结果是?( )
‘Python, need, You’
'Python,You,need'
‘need,You,Python’
‘need,Python,You’