How to separate words that start with specific letters (e.g. p and c) from a string into a list in Python

1 Answer

0 votes
import re

s = "java python cpp php 123 csharp c basic pascal"

lst = re.findall("[pc]\w+", s)

print(lst)


'''
run:

['python', 'cpp', 'php', 'csharp', 'pascal']

'''

 



answered Aug 31, 2018 by avibootz
...