Skip to content
View matu809's full-sized avatar

Block or report matu809

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse

Popular repositories Loading

  1. Cklj Cklj Public

    nombre = input("Ingresa tu nombre: ") apellido = input("Ingresa tu apellido: ") edad = input("Ingresa tu edad: ") sabe_programar = input("¿Sabes programar? (Sí/No): ") mensaje = "Hola, " + nombre +…

    1

  2. Ji Ji Public

    Variables Escribe un programa que reciba datos de una persona y genera un mensaje, usa una variable para cada dato y otra para el mensaje. Ej: nombre, apellido, edad, sabe programar, etc. Ejercicio…

    1

  3. Ma Ma Public

  4. g g Public

    def suma_tres_numeros(num1, num2, num3): suma = num1 + num2 + num3 return suma

  5. Hhh Hhh Public

    numeroIf = 5 if numeroIf > 0: print("El número es positivo") elif numeroIf < 0: print("El número es negativo") else: print("El número es cero") # Bucle While numeroWhile = 0 while numeroWhile < 3: …

  6. Bjj Bjj Public

    class Persona: def __init__(self, nombre, edad): self.nombre = nombre self.edad = edad def saludar(self): print(f"Hola, mi nombre es {self.nombre} y tengo {self.edad} años.") def cumplir_anios(self…