Python regex ganti semua karakter non alfanumerik

import re

s = re.sub('[^0-9a-zA-Z]+', '*', s)
Tejas Naik