File size: 99 Bytes
8bc7dc5
 
 
 
 
1
2
3
4
5
import re

def remove_ast(text):
    cleaned_text = re.sub(r'\*', '', text)
    return cleaned_text