21 lines
230 B
Python
21 lines
230 B
Python
# standard imports
|
|
|
|
# external imports
|
|
|
|
# local imports
|
|
|
|
|
|
def gender():
|
|
return {
|
|
'1': 'male',
|
|
'2': 'female',
|
|
'3': 'other'
|
|
}
|
|
|
|
|
|
def language():
|
|
return {
|
|
'1': 'en',
|
|
'2': 'sw'
|
|
}
|