◐ Shell
clean mode source ↗

reztdev - Overview

#!/usr/bin/python
# -*- coding: utf-8 -*-

class MyProfiles:
    def __init__(self):
    	self.author = "ReztDev",
        self.name = "Muhammad Rizki",
        self.language = {"python", "html", "css", "bash"},
        self.skill = {"programming", "networking", "analyst malware"},
        self.operating_system = {"windows", "linux"}

    def say_hi(self):
        print("Thanks for dropping by, hope you find some of my work interesting.")

me = MyProfiles()
me.say_hi()