Spaces:
Runtime error
Runtime error
File size: 297 Bytes
1366553 |
1 2 3 4 5 6 7 8 |
def branch(text_list):
for i in range(len(text_list)):
if text_list[i] == ('Pandas' or 'Neural' or 'Sklearn' or 'Matplotlib' or 'Tensorflow'):
department = 'Data Science'
elif text_list[i] == "Django":
department = 'Web Developer'
return department
|