offer_list=['Allen','Tom'] for i in offer_list: print('{}, you have passed our interview and will soon become a member of our company.'.format(i)) offer_list.remove('Tom') offer_list.append('Andy') for j in offer_list: print('{}, welcome to join us!'.format(j)) 下面的几道题主要就是考验python中的列表列表是什么意思,列表就是一组按照...