print consonants python

Solutions on MaxInterview for print consonants python by the best coders in the world

showing results for - "print consonants python"
Laura
03 Apr 2019
1vowels = ("aeiou")
2count = 0
3for x in text:
4    if not x in vowels:
5        count += 1
6