下列操作,正确的为哪一项?( )
>>>tuple(‘ni hao’)
>>>(‘ni’,’hao’)
>>>tuple(range(3))
>>>(0,1,2)
>>>tuple(str,range(3))
>>>tuple(map(str,range(3)))