linkedin 🔗 | twitter 🐦 | My hasnode blogs 🧑🏻💻 |
#!/usr/bin/python
# -*- coding: utf-8 -*-
class AayushSinha:
def __init__(self):
self.name = "Aayush Sinha"
self.role = "Self teaching myself Computer Science and Data Science📚 "
self.interests = ["Machine Learning", "Python development"]
self.language_spoken = ["en_IN", "hi_IN"]
def say_hi(self):
print("Thanks for dropping by :) hope you find my work interesting!")
me = AayushSinha()
me.say_hi()