fork download
  1. def is_pangram(phrase):
  2. alphabet = "abcdefghijklmnopqrstuvwxyz"
  3. return not (set(alphabet) - set(phrase))
  4.  
  5. print(is_pangram('vyshakh'))
  6.  
  7.  
  8. # your code goes here
Success #stdin #stdout 0.01s 9024KB
stdin
Standard input is empty
stdout
Standard output is empty