pangram function

Solutions on MaxInterview for pangram function by the best coders in the world

showing results for - "pangram function"
Daniel
18 May 2019
1def is_pangram(str, alphabet = "abcdefghijklmnopqrstuvwxyz"):
2  alphabet = alphabet.lower()
3  for char in alphabet:
4    if char not in str.lower():
5      return False
6  
7  return True
8string = input("text>>")
9print(is_pangram(string))