>>> import ast
>>> x = u'[ "A","B","C" , " D"]'
>>> x = ast.literal_eval(x)
>>> x
['A', 'B', 'C', ' D']
>>> x = [n.strip() for n in x]
>>> x
['A', 'B', 'C', 'D']
출처 : https://stackoverflow.com/questions/1894269/convert-string-representation-of-list-to-list
반응형
'COMPUTER SCIENCE > PYTHON' 카테고리의 다른 글
[Python] Colab에서 구글 드라이브 연동하기 (0) | 2020.07.15 |
---|---|
[Python] Pandas 행, 열 출력 개수 설정 (0) | 2020.06.12 |
[Python] 외부 경로에 있는 py 파일 import하기 (0) | 2020.04.29 |
[Python] itemgetter를 이용하여 index로 list 추출하기 (0) | 2020.04.24 |
[Python] Pycharm에서 import 패키지 에러 해결 (0) | 2020.03.07 |