第1关:列表转元组 本关任务:编写一个程序,将读入的测试数据列表List转换为元组并输出。 #此部分为读入测试数据到list1中 list1 = [] while True: try: item= input() list1.append(item) except