字符串转元组 a = "123" print(tuple(a)) #结果:('1', '2', '3') a = "(1,2,3)" b ... 元组转字列表 a = ('aaddff', 'bb', 'cc') print(list(a)) ...
確定! 回上一頁