I am a beginner in python and maybe this question seems simple to some but well, here I want to ask how I could ask for text by keyboard and that text that is automatically saved in uppercase?
dni = int(input("Ingrese su numero de DNI: "))
nombre = str(input("Ingrese su nombre y apellido: "))
edad = int(input("Ingrese su edad:"))
especialidad = str(input("Ingrese especialidad: "))
especialidad.upper()
status = "Disponible"
It's in the specialty part I do not know if that would work, and if someone also knows how to do so that he does not identify accents, great, if he emphasizes or not that it is the same that is saved without an accent. So when looking for it in the console it is easier to find it. Thanks !!!