Hi there, I'm Artem

#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareEngineer:
def __init__(self):
self.name = "Artem"
self.role = "Software Engineer"
self.language_spoken = ["ru_RU", "en_US"]
self.skills = ["Python", "C#", "PHP", "JavaScript"]
def hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = SoftwareEngineer()
me.hi()