Skip to content Skip to sidebar Skip to footer
Showing posts with the label Punctuation

What Does Python String.maketrans("","") Do?

string.maketrans('','') gives \x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\… Read more What Does Python String.maketrans("","") Do?

Python Regex Punctuation Recognition

I am stumped by this one. I am just learning regular expressions and cannot figure out why this wil… Read more Python Regex Punctuation Recognition

Strip Punctuation From String In Python

I`m working with documents, and I need to have the words isolated without punctuation. I know how t… Read more Strip Punctuation From String In Python

Splitting A String Into Words And Punctuation Without Using Any Import

I've seen similar questions to my question, but they all used regex.What I want to do is taking… Read more Splitting A String Into Words And Punctuation Without Using Any Import