python 의 목록, 원 그룹, 문자열 을 서로 변환 합 니 다.

1871 단어 PythonLearn
박문 참고:http://blog.csdn.net/sruru/article/details/7803208
목록 요 소 를 문자열 로 변환:
>>> a=['hello']
>>> b=''.join(a)
>>> b
'hello'
>>> a=['hello','python']
>>> b=''.join(a[1])
>>> 
>>> b
'python'
>>> 

목록 요 소 를 원 그룹 으로 변환:
>>> def str2tuple(*str):
	return str

>>> a
['hello', 'python']
>>> str2tuple(a[0],a[1])
('hello', 'python')
>>> 

원본 그룹 을 문자열 로 변환:
>>> a=('hello', 'python')
>>> a
('hello', 'python')
>>> ''.join(a[0])
'hello'
>>> 

원본 요소 변환 목록:
>>> a=('hello', 'python')
>>> a
('hello', 'python')
>>> list(a)
['hello', 'python']
>>> list(a[0])
['h', 'e', 'l', 'l', 'o']
>>>

문자열 을 원 그룹 으로 변환:
>>> a='hello world!'
>>> a
'hello world!'
>>> tuple(a)
('h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!')
>>> str2tuple('hello world!')
('hello world!',)
>>> 

문자열 을 목록 으로 변환:
>>> a
'hello world!'
>>> list(a)
['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!']
>>> str2tuple(a)
('hello world!',)
>>> list(str2tuple(a))
['hello world!']
>>> 

좋은 웹페이지 즐겨찾기