Completar frases Estructura de Datos Semana 3 Eje1Versión en línea Estructura de Datos Semana 1 por Anyelo Gerley Quintero Reyes 1 print username input # Primera forma de lectura por teclado username = ( " Ingrese su nombre : " ) ( " Nombre es : " + ) # se utiliza el + para concatenar una cadena de texto # con una variable caden a 2 programa universidad usuario input usuario = ( " Ingrese su nombre : " ) universidad = input ( " Ingrese nombre universidad : " ) programa = input ( " Ingrese programa : " ) print ( " Nombre es : " + ) print ( " Universidad : " + ) print ( " Programa : " + ) 3 EPS estrato direccion paciente paciente = input ( " Nombre paciente : " ) direccion = input ( " Ingrese dirección : " ) EPS = input ( " Ingrese EPS : " ) estrato = input ( " Ingrese estrato : " ) print ( " * * * * * * * * * * * * * * * * * * * * * * * * * * * " ) print ( " DATOS DEL PACIENTE " ) print ( " Nombre es : " + ) print ( " Dirección : " + ) print ( " EPS : " + ) print ( " Estrato : " + )