Heya! I'm Falih, a student currently living in Tegal, Indonesia. I'm preparing for JEE, and learning programming through small projects on the side.
class cenzoo():
def __init__(self):
self.name = "Muhammad Falih Afiq";
self.username = "cenzoo";
self.location = "Central Java, Indonesia";
self.twitter = "@cenzoooo";
self.web = "https://zxteam.live";
def __str__(self):
return self.name
if __name__ == '__main__':
me = Cenzooo()