Forum >> Programmazione Python >> Scripting >> Metodo isalpha

Pagina: 1

Messaggio annotato da Daniele aka Palmux :
Questa discussione è stata spostata dalla categoria Blog.
Come posso cambiare queste righe di codice con il metodo isalpha() che elimini numeri e caratteri non alfabetici?

testo=text.lower()

for strane in testo:
as2=testo.replace("1"," ").replace("2"," ").replace("3"," ").replace("4"," ").replace("5"," ").replace("6"," ").replace("7"," ").replace("{"," ").replace("["," ").replace("}"," ").replace("]","
").replace("`"," ").replace("=", " ").replace('"',' ').replace('_'," ").replace("<"," ").replace(">"," ").replace('\''," ").replace("/"," ")...

>>> [(c, c.isalpha()) for c in "azAZ19{["]
[('a', True), ('z', True), ('A', True), ('Z', True), ('1', False), ('9', False), ('{', False), ('[', False)]
THE 🍺-WARE LICENSE (Revision ㊷):
<㎝🐌🐍.🇮🇹> wrote this post. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you
think this stuff is worth it, you can buy me a 🍺 in return. -- ㎝


Pagina: 1



Esegui il login per scrivere una risposta.