Bioinformatics Student @ Université Paris Cité | Bioinformatics Software Developper @ Institut Cochin
#!/usr/bin/python
# -*- coding: utf-8 -*-
class BioinformaticsEngineer:
def __init__(self):
self.name = "Gaelle Loutfi"
self.role = "Bioinformatics Software Developper"
self.education = {
"BSc" : "Lebanese American University",
"MSc" : "Université Paris Cité"
}
def say_hi(self):
print("Thanks for dropping by! Feel free to look around, hope you find some of my work interesting.")
me = BioinformaticsEngineer()
me.say_hi()
