texthero.preprocessing.remove_round_brackets¶ remove_round_brackets(s: pandas.core.series.Series)¶ Remove content within parentheses () and parentheses. See also remove_brackets() remove_angle_brackets() remove_curly_brackets() remove_square_brackets() Examples >>> s = pd.Series("Texthero (is not a superhero!)") >>> remove_round_brackets(s) 0 Texthero dtype: object