#!/usr/bin/python# -*- coding: utf-8 -*-classJfasof:
def__init__(self):
self.name="FΔ±rat ALABUGA"self.role="Software Developer"self.location="IST/TUR"self.blog="https://jfasoftware.tk"self.knowledge_base= [
"Software Engineering",
"Machine Learning",
"Deep Learning",
"Computer Vision",
"Android",
"Flutter",
"Web"
]
self.knowledge_base.insert(0, "Backend Engineering")
defsay_hi(self):
print(
"""Hello my friend, thanks for dropping by!This is {name}, I live in {location}. I work as a {role} and recently I am focusing on {focus} for my personal growth.I have wide interests, but most of them are {knowledge_base}.I write down tips and lecture notes on my personal tech blog, which can be found here: {blog}""".format(
name=self.name,
location=self.location,
role=self.role,
focus=self.knowledge_base[0],
knowledge_base=", ".join(self.knowledge_base[1:]),
blog=self.blog,
)
)
me=Jfasof()
me.say_hi()