How to split N words from a string using regex and maxsplit in Python

1 Answer

0 votes
import re
 
s = 'Python is an interpreted, general-purpose programming language'
 
sp = re.split('\W+', s, 2)
 
print(sp)
 
  
'''
run:
  
['Python', 'is', 'an interpreted, general-purpose programming language']
  
'''

 



answered Aug 1, 2019 by avibootz

Related questions

...