Skip to content
View zardamhussain's full-sized avatar
:electron:
Focusing
:electron:
Focusing

Block or report zardamhussain

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
zardamhussain/README.md

zardamhussain

About me

#!/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()

Tools and technologies

Some projects

DA-RNN DA-RNN DA-RNN DA-RNN

Socials

dephraiim dephraiim

Pinned Loading

  1. aigf_python aigf_python Public

    Python

  2. Signal-Clone Signal-Clone Public

    signal clone

    JavaScript