#!/usr/bin/python
# -*- coding: utf-8 -*-
class Bio:
def __init__(self):
self.name = "Sam"
self.role = "Admin"
self.language_spoken = ["English"]
def say_hi(self):
print("Welcome to my world of development! I break things, code them, and learn as I grow.")
me = Bio()
me.say_hi()
I’m a just a guy who code for fun, who loves to learn, code, and build. From experimenting. I focus on gaining knowledge and creating projects for fun.