Skip to content
View LapoAndres's full-sized avatar
  • Universidad Politecnica Salesiana
  • Ecuador

Block or report LapoAndres

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
LapoAndres/README.md

Hi 👋, I'm Andres Lapo

A passionate backend developer from Ecuador

  • ��� I’m a OCI Foundamentals Associate (Oracle Cloud Infrastructure)

  • 💬 Ask me about Java, Spring Boot, MySQL and OCI

  • 📫 How to reach me jandlapom@hotmail.com

Connect with me:

juan-andres-lapo-molina 16285718

Languages and Tools:

css3 figma git html5 java mysql python spring

Pinned Loading

  1. Reto día 2 de Pyhton Reto día 2 de Pyhton
    1
    print("Bienvenido usuario")
    2
    n              = int(input("Ingrese la cantidad de usuarios que desea registrar\n"))
    3
    names          =[]
    4
    last_names     =[]
    5
    phone_numbers  =[]
  2. Reto día 5 de Python Reto día 5 de Python
    1
    def generador_id():
    2
        id_user = 1
    3
        while True:
    4
            yield id_user
    5
            id_user +=1
  3. Reto día 4 Reto día 4
    1
    def generador_id():
    2
        id_user = 1
    3
        while True:
    4
            yield id_user
    5
            id_user +=1
  4. Reto del dia 1 de Python Reto del dia 1 de Python
    1
    print("Bienvenido usuario")
    2
    name         = str(input("Por favor ingresa tu nombre:\n"))
    3
    last_name    = str(input('Ingrese su apellido:\n '))
    4
    phone_number = int(input('Ingrese su número de telefono:\n'))
    5
    email        = str(input('Ingrese su correo electrónico: \n'))
  5. Reto día 3 de Python Reto día 3 de Python
    1
    print("Bienvenido usuario")
    2
    n= int(input("Ingrese la cantidad de usuarios que desea registrar\n"))
    3
    
                  
    4
    def generador_id():
    5
        id_user = 1