Open In App

Python – RemoveAccents Module

Last Updated : 16 Jul, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

removeaccents module is that library of python which helps you to remove all the accents from a given string. The most common accents are the acute (é), grave (è), circumflex (â, î or ô), umlaut and dieresis (ü or ï ). Accent marks usually appear above a character.
It can be widely used in Natural language Processing for filtering out the data by removing all the accents from a given text.

Installing Library :

This module does not come built-in with Python. You need to install it externally. To install this module type the below command in the terminal.

pip install removeaccents

remove_accents : It will return the string after removing all accents from the characters in the string.

Example :




# Importing removeaccents function  
# From removeaccents Library  
from removeaccents import removeaccents
  
str_input ="Ît löökèd cóol ând câsüâl, büt nôt prôvôcâtïvê ."
str_output = removeaccents.remove_accents(str_input)
print(str_output)
  
str_input ="För môrê àrticlés vîsit GééksförGèèks ."
str_output = removeaccents.remove_accents(str_input)
print(str_output)
  
str_input ="https://äüth.gèéksforgëëks.ôrg / usër / vâsü_gûptâ/àrtîclés ."
str_output = removeaccents.remove_accents(str_input)
print(str_output)


Output:

It looked cool and casual, but not provocative .

For more articles visit GeeksforGeeks .

https://auth.geeksforgeeks.org/user/vasu_gupta/articles .

Reference:pypy.org


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads