工作了,没有时间学习了
>>> brand = ['李宁','耐克','鱼C工作室']
>>> slogan = ['一切皆有可能','just do it','让编程改变世界']
>>> print('the is:',slogan[brand.index('鱼C工作室')])
('the is:', 'xc8xc3xb1xe0xb3xccxb8xc4xb1xe4xcaxc0xbdxe7')
>>> print('the is:',slogan[brand.index('鱼C工作室')])
('the is:', 'xc8xc3xb1xe0xb3xccxb8xc4xb1xe4xcaxc0xbdxe7')
>>>