반응형
4 * x
자 길이의 문자열을 가져 와서 각 x
자 길이의 4 개 문자열로 자르는 방법이 있습니까?
예를 들면 :
>>>x = "qwertyui"
>>>split(x, one, two, three, four)
>>>two
'er'
해결 방법
>>> x = "qwertyui"
>>> chunks, chunk_size = len(x), len(x)/4
>>> [ x[i:i+chunk_size] for i in range(0, chunks, chunk_size) ]
['qw', 'er', 'ty', 'ui']
참조 페이지 https://stackoverflow.com/questions/13673060
반응형
'파이썬' 카테고리의 다른 글
파이썬 numpy datetime64에서 년, 월 또는 일 가져 오기 (0) | 2021.02.01 |
---|---|
파이썬 시리즈 목록을 Pandas DataFrame에 어떻게 전달합니까? (0) | 2021.02.01 |
파이썬 클래스 내부에 메서드를 장식하는 방법은 무엇입니까? (0) | 2021.02.01 |
파이썬 문자열을 dict로 변환 하시겠습니까? (0) | 2021.02.01 |
파이썬 Is a Python list guaranteed to have its elements stay in the order they are inserted in? (0) | 2021.02.01 |
댓글