Python : Sample Examples and their solutions level Medium
Python : Sample Examples and their solutions level Class 7 Example 1. Write a Python program to accept alphabet from the user and display whether it it a vowel or consonant. Solution: alpha = input(“Enter an alphabet:”) alpha = alpha.lower() if alpha in ‘aeiou’ : print(alpha, “is a Vowel.”) else: print(alpha, “is a consonant”) Example…
Read More “Python : Sample Examples and their solutions level Medium” »