#!/usr/bin/python
# -*- coding: utf-8 -*-
class Developer:
def __init__(self):
self.name = "Zardam Hussain"
self.age = 22
self.location = "Delhi, India"
self.programming_languages = ["๐ Python", "๐ฆ Rust", "๐จ C++", "โ Java"]
self.hobbies = ["๐ฎ Playing Video Games", "โฝ Football"]
def about(self):
print(f"Hey! I am {self.name}. I love to build stuff!")
print(f"I'm {self.age} years old and based in {self.location}.")
print("\n๐ Programming Languages I Enjoy:")
for language in self.programming_languages:
print(f" - {language}")
print("\n๐ฏ Hobbies:")
for hobby in self.hobbies:
print(f" - {hobby}")
print("\nHere's a fun fact:")
self.fun_fact()
def fun_fact(self):
print("Did you know? The first computer programmer was Ada Lovelace!")
def ascii_art(self):
art = r"""
(\_/)
( โข_โข)
/ >๐ Coding the world!
"""
print(art)
if __name__ == '__main__':
me = Developer()
me.about()
me.ascii_art()
Focusing
Removing language barriers @ dubit.live
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.