Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Cual es mi acronimo.
- print("HOLA! BIENVENIDO AL GENERADOR DE ACRONIMOS.");
- nombre = input("Ingrese el nombre completo: ");
- ArrayNombre = nombre.split();
- acronimo = "";
- for n in ArrayNombre:
- acronimo = acronimo + n[0];
- print("El acrónimo es: " + acronimo.upper());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement