I'm a Computer Science student at Tecnológico de Monterrey, passionate about:
- 🖥️ Game Programming
- 🌐 Web Development
- 🔍 Ethical Hacking
- 🎮 Playing Video Games
- 🏋️ Going to the Gym
- 📺 Watching Anime
Guadalajara, Mexico
Here are some of the tools and technologies I work with:
#!/usr/bin/python
# -*- coding: utf-8 -*-
class ComputerEngineer:
"""Base class."""
def __init__(self):
self.name = "Alan Corona López"
self.career = "B.S. in Computer Science and Technology"
self.university = "Tecnológico de Monterrey"
self.role = "Student"
self.contact = "[email protected]"
self.learn = ["Game Programming", "Web Development", "Algorithms", "Ethical Hacking"]
self.things = ["Go to the gym", "Play video games", "Watch anime"]
def get_city(self):
"""Returns the city where I live."""
return "Guadalajara, Mexico"
class SoftwareEngineerStudent(ComputerEngineer):
"""Derived class representing a software engineering student."""
def __init__(self):
super().__init__()
if __name__ == '__main__':
me = SoftwareEngineerStudent()
print(f"Name: {me.name}")
print(f"Career: {me.career}")
print(f"University: {me.university}")
print(f"Role: {me.role}")
print(f"Contact: {me.contact}")
print(f"Learning: {', '.join(me.learn)}")
print(f"Things I like: {', '.join(me.things)}")
print(f"City: {me.get_city()}")|
|
|
|
