Contact: aviboots(AT)netvision.net.il
39,900 questions
51,831 answers
573 users
import re html = """<p>Python is an interpreted high-level <strong>programming language</strong></p>""" s = re.sub("<.*?>", "", html) print(s) ''' run: Python is an interpreted high-level programming language '''