📜  Python – RemoveAccents 模块

📅  最后修改于: 2022-05-13 01:55:05.496000             🧑  作者: Mango

Python – RemoveAccents 模块

removeaccents模块是Python库,它可以帮助您从给定字符串中删除所有重音符号。最常见的重音是锐音符 (é) 、重音符(è)抑扬音符 (â、î 或 ô)变音符号和分音符 (ü 或 ï) 。重音符号通常出现在字符上方。
它可以广泛用于自然语言处理,通过从给定文本中删除所有重音来过滤数据。

安装库:

这个模块没有内置在Python中。您需要在外部安装它。要安装此模块,请在终端中键入以下命令。

remove_accents :从字符串中的字符中删除所有重音后,它将返回字符串。

例子 :

# 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)

输出:

It looked cool and casual, but not provocative .

For more articles visit GeeksforGeeks .

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

参考: pypy.org