Skip to content

Instantly share code, notes, and snippets.

@luminousmen
Created October 10, 2019 16:29
Show Gist options
  • Save luminousmen/a34ed18cfde12443f8add92b06e8a0f6 to your computer and use it in GitHub Desktop.
Save luminousmen/a34ed18cfde12443f8add92b06e8a0f6 to your computer and use it in GitHub Desktop.
import string
input_str = “This &is [an] example? {of} string. with.? punctuation!!!!” # Sample string
result = input_str.translate(string.maketrans(“”,””), string.punctuation)
print(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment