728x90
import re
s = 'apple orange:banana,tomato'
l = re.split(r'[ ,:]', s)
print(l)
'''
['apple', 'orange', 'banana', 'tomato']
'''
728x90
'python > 자료구조 & 알고리즘' 카테고리의 다른 글
[알고리즘] 다익스트라 알고리즘 (0) | 2023.01.20 |
---|---|
[알고리즘] 미로 찾기 - BFS, DFS (1) | 2022.10.11 |
파이썬 N진법 변환 (0) | 2022.09.15 |
[알고리즘] 백트래킹 (backtracking) - n-Queens 문제 구현 / 파이썬 Python (0) | 2022.09.02 |
[알고리즘] 백트래킹(backtracking) 알고리즘 / 파이썬 Python (0) | 2022.09.01 |