I would like to replace every expression that starts with the characters: *:
.
tentativa = 'Olá td bem? *:palavra_proibida*985 td otimo'
resultado = re.sub('*:', '', tentativa)
Result Obtained:
Olá td bem? palavra_proibida*985 td otimo
Expected result:
Olá td bem? td otimo