Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/userp/killdd.py
2020-06-13 20:43:43 +08:00

6 lines
No EOL
104 B
Python

import re
def ddk(str1):
a = re.sub('<dd>', '', str1)
a = re.sub('</dd>', '', a)
return (a)