Python - Zählwerte, die Sonderzeichen enthalten
special = '[(_:/,#%\=@)]' # Define special characters
df['count'] = df['myvar'].str.count(special) # Count them
Andrea Perlato