Objectivo
Desarrollar un programa Python para solicitar al usuario un símbolo y responder si es una vocal (en minúscula), un dígito o cualquier otro símbolo, usando "si".
Ejemplo Ejercicio Python
Mostrar Código Python
# Prompt the user for a symbol
symbol = input("Enter a symbol: ")
# Check if the symbol is a vowel (in lowercase)
if symbol in 'aeiou':
print("It's a vowel.")
# Check if the symbol is a digit
elif symbol.isdigit():
print("It's a digit.")
# If it's neither a vowel nor a digit, it's another symbol
else:
print("It's another symbol.")
Output
Case 1:
Enter a symbol: a
It's a vowel.
Case 2:
Enter a symbol: 5
It's a digit.
Case 3:
Enter a symbol: #
It's another symbol.
Código de Ejemplo copiado
Comparte este ejercicios Python