Re: function to remove and punctuation

2016-04-10 Thread Peter Otten
Thomas 'PointedEars' Lahn wrote: > Peter Otten wrote: > >> gesh...@gmail.com wrote: >>> how to write a function taking a string parameter, which returns it >>> after you delete the spaces, punctuation marks, accented characters in >>> python ? >> >> Looks like you want to remove more characters

Re: function to remove and punctuation

2016-04-10 Thread Thomas 'PointedEars' Lahn
Peter Otten wrote: > gesh...@gmail.com wrote: >> how to write a function taking a string parameter, which returns it after >> you delete the spaces, punctuation marks, accented characters in python ? > > Looks like you want to remove more characters than you want to keep. In > this case I'd decid

Re: function to remove and punctuation

2016-04-10 Thread Peter Otten
gesh...@gmail.com wrote: > how to write a function taking a string parameter, which returns it after > you delete the spaces, punctuation marks, accented characters in python ? Looks like you want to remove more characters than you want to keep. In this case I'd decide what characters too keep f

Re: function to remove and punctuation

2016-04-10 Thread Steven D'Aprano
On Sun, 10 Apr 2016 09:37 pm, gesh...@gmail.com wrote: > how to write a function taking a string parameter, which returns it after > you delete the spaces, punctuation marks, accented characters in python ? In your text editor, open a new file. Now bash your fingers onto the keyboard so that let

function to remove and punctuation

2016-04-10 Thread geshdus
how to write a function taking a string parameter, which returns it after you delete the spaces, punctuation marks, accented characters in python ? -- https://mail.python.org/mailman/listinfo/python-list