Skip to content
View code1zero's full-sized avatar
  • saudi arabia

Block or report code1zero

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
code1zero/README.md
from GitHub import ReadMe

class code1zero(ReadMe):

    def __init__(self):
        self.username = "code1zero"
        self.name = "Mohammed Zawli"
        self.language = "πŸ’¬Arabic"
        self.programming_languages = ["🐍Python", "πŸ“Javascript", "πŸ“Typescript", "πŸͺ„Lua"]
        self.location = "πŸ“«Kingdom of Saudi Arabia"
        self.education = "🏫Master's in Computer Science"

    def about_me(self):
        print(f"""
        Hi, I'm {self.name}, or {self.username} online.
        In my free time I create projects to help deepen my understanding of code. 
        I find the more you build, the faster you learn.
        I have previously used the following programming languages
        ordered from most to least used: {', '.join(i for i in self.programming_languages)}.
        You may find some of these projects on my GitHub profile.
        """)
        
        me = code1zero()
        me.about()

@code1zero's activity is private