-list.insert(index, obj) index-- 需要插入的索引位置。obj-- 要插入列表中的对象。 aList = [123, 'xyz', 'zara', 'abc'] aList.insert( 3, 2009) print "Final List : ", aList Final List : [123, 'xyz', 'zara', 2009, 'abc'] -接收用户输入的数据,该数据仅由字母和中文混合构成,无其他类型字符,统计并输出中文字符出现的个数 s = input("请输入中文和字母的组合:...