Skip to content

Instantly share code, notes, and snippets.

@AbbadonAA
Last active September 25, 2021 15:40
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 AbbadonAA/8eb4db3dfe8a887b38236d10b6f6ac8c to your computer and use it in GitHub Desktop.
Save AbbadonAA/8eb4db3dfe8a887b38236d10b6f6ac8c to your computer and use it in GitHub Desktop.
Get letters from str and analize pangram
def is_pangram(s):
let = []
[let.append(l.lower()) for l in s if l.isalpha()]
return True if len(set(let)) == 26 else False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment