from abc import ABC
class Creature(ABC):
pass
class RaminFeaturesMixin:
def add_abilities(self) -> None:
self.job_skills = ['Coding', 'Biotechnology']
self.sport = ['Academic Research', 'Camping', 'Bodybuilding']
self.favorites = ['Coffee', 'Games','industry']
class Human(Creature, RaminFeaturesMixin):
def __init__(self, full_name: str, location: str, language: str) -> None:
self.full_name = full_name
self.location = location
self.language = language
def say_hello(self):
print('Glad to have you here. I hope you will be interested in my projects')
Ramin = Human('Ramin-Yazdani', 'Iran', 'Persian')
ramin.add_abilities()
Ramin.say_hello()
Hi, I’m Ramin! I’m a developer and biotechnologist with expertise in drug and protein production using micro-organisms. I love coding and often write scripts to help with my daily routines and challenges. My interests in programming include Python, C, front-end development, robotics, AI, and data science. Some of my projects include crawlers and data manipulators for data analysis. I hope to use my GitHub profile to connect with other developers, contribute to projects, and showcase my work as a CV for potential job opportunities.
- 🔭 I’m currently working on my Python resume repo which includes 0 to hero projects from beginner to advance.
- 🌱 I’m currently learning new techs and subjects for benefitting artificial intelligence.
- 👯 I’m looking to collaborate on any projects that fits my expertise and get experience .
- 📫 How to reach me: [email protected]