list,string,tuple,dictionary之间的转换

版权声明:本文为博主原创文章,转载请注明出处。 https://blog.csdn.net/YQ1228/article/details/78542035

list,string,tuple,dictionary之间的转换

类型 String List tuple dictionary
String - list(str), str.split() tuple() -
List ‘’.join(list_name) - tuple() dict(list)
tuple - list(tuple) - dict(tuple)
dictionary - dic.items() tuple (dic.items()) -

猜你喜欢

转载自blog.csdn.net/YQ1228/article/details/78542035