Nicolas De Giglio

All generations.

testsSat, 22 Jul 2023

Traceback (most recent call last): File "c:\Users\Nicolas\Desktop\Momentos Nico\Programacion\Proyectos\Intento.py", line 312, in <module> main() File "c:\Users\Nicolas\Desktop\Momentos Nico\Programacion\Proyectos\Intento.py", line 309, in main A1(nombre_pj) File "c:\Users\Nicolas\Desktop\Momentos Nico\Programacion\Proyectos\Intento.py", line 50, in A1 A2(nombre_pj,edad_usu) File "c:\Users\Nicolas\Desktop\Momentos Nico\Programacion\Proyectos\Intento.py", line 79, in A2 A9(nombre_pj, mascotas) TypeError: A9() missing 1 required positional argument: 'edad_usu'

## Enumerate

typingsSat, 22 Jul 2023

I want in this question: high school= int(input("What year of high school are you in?")) if secondary <= 4: print("Ohhh you're just starting high school, it's one of the most important moments for a person's development, so make the most of it.") secondary elif >= 5: print("You're just about to finish, so I'm going to tell you something that I would have loved to know when I was your age. Those years are the most important so take advantage of it but don't neglect studying, always study even a little.") If I answer: I'm in 5th year, I get away with the elif

def add(a: int, b: int) -> int: return a + b

Want to kickstart your project?Use the new AI Studio to create your code