This program prompts the user to input a phrase, then counts the number of vowels and consonants present in that phrase, ignoring uppercase letters and considering only alphabetical characters.
```py
def count_vowels_consonants(phrase):
vowels = 0
consonants = 0
# Converting the phrase ...