class Zoony1337:
def __init__(self):
self.variables = {
'name': 'Akam Hamak',
'age': 17,
'hobby': 'Developing',
'languages': ('Swedish', 'English', 'Kurdish')
}
def description(self):
print('------zoony------')
for index, value in enumerate(self.variables.values()):
if index == 0:
print(f'Name: {value}')
elif index == 1:
print(f'Age: {value}')
elif index == 2:
print(f'Hobby: {value}')
elif index == 3:
print(f'Languages: {value}')
def social_medias(self):
platforms = {
'YouTube': 'DayZoonHD', # 45.000 subscribers
'Instagram': 'akamhamak',
'Discord Username': 'zoony#2003',
'Discord Server': 'http://discord.zoony.xyz',
'Telegram': 'zoony1337'
}
print('\n-----contact-----')
for key, value in platforms.items():
print(f'{key}: {value}')
if __name__ == '__main__':
zoony = Zoony1337()
zoony.description()
zoony.social_medias()Highlights
- Arctic Code Vault Contributor
- Developer Program Member
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up