Contact: aviboots(AT)netvision.net.il
42,200 questions
54,908 answers
573 users
import re string = 'Python is a high-level "interpreted" general-purpose "programming language"' lst = re.findall(r'"([^"]*)"', string) print(lst) ''' run: ['interpreted', 'programming language'] '''