Python 2.5字符串,修改后的列表,修改为元组

时间:2012-04-24 03:15:34

标签: python list

我有一个字符串“hello world”,我将其列入一个列表,我需要将其修改为一个元组。 我有点卡在代码上,希望有人可以帮助我。

s1=str("hello world")
L1= list(s1)

print type (L1)
list

print L1(5)

2 个答案:

答案 0 :(得分:2)

s1="hello world"
L1=s1.split(" ")
t1=tuple(L1)
print type(t1)
tuple


print(t1)
('hello', 'world')

答案 1 :(得分:0)

我想我也找到了另一种方式。

s1= str("hello world")

L1= list(s1)

print type  (L1)

print L1