- π Iβm currently working on my last training final project
- π€ Iβm looking for help to find small project ideas for my protfolio
- π± Iβm currently learning more about Angular
class StormLbn:
def __init__(self):
self.name = "Storm"
self.location = "France"
self.role = "Fullstack Developer"
self.education = [
"Java & Angular training",
"Python introduction training",
"HTML, CSS and JS self-training",
"Bachelor's degree in organic chemistry"
]
self.code = {
"backend": ["Java", "Spring", "Python"],
"frontend": ["HTML", "CSS", "Angular"],
"database": ["MySQL", "PostgreSQL"]
}
def __str__(self):
return f"{self.name}, {self.role}"
if __name__ == '__main__':
me = StormLbn()
print(me)