developers = {
'constantine': {
'level': 'junior',
'languages': ['c#', 'java', 'ruby', 'python'],
'style': 'remote'
},
'igor': {
'level': 'architector',
'languages': ['c#', 'python', 'go', 'rust'],
'style': 'office/remote',
}
}
active = True
while active:
name = input("Please enter the names (constantine/igor)")
# section = input("Please enter the sections(level/languages/style")
if name == 'constantine':
section = input("Please enter the sections(level/languages/style")
if section == 'level':
print(developers['constantine']['level'])
if section == 'languages':
print(developers['constantine']['languages'])
if section == 'style':
print(developers['constantine']['style'])
if name == 'igor':
section = input("Please enter the sections(level/languages/style")
if section == 'level':
print(developers['igor']['level'])
if section == 'languages':
print(developers['igor']['languages'])
if section == 'style':
print(developers['igor']['style'])
if name == 'q':
active = False