Skip to content

Instantly share code, notes, and snippets.

@apalevich
Created October 1, 2022 10:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save apalevich/83b19b4ff0f1923c03dec8e9fe4bb144 to your computer and use it in GitHub Desktop.
Save apalevich/83b19b4ff0f1923c03dec8e9fe4bb144 to your computer and use it in GitHub Desktop.
Send message to Whatsapp
import re
str = input('Copy and paste here phone number (Cep)')
fixed = re.sub(r"\D", "", str)
print('Send message to Whatsapp: https://wa.me/9' + fixed)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment