把a表格的内容读取出来,然后写到b表格 #!/usr/bin/env python3 import sys #控制台要输入的两个参数格式为:python script_name.py 参数1 参数2 input_file=sys.argv[1] output_file=sys.argv[2] #把a表格的内容读取出来,然后写到b表格 with open(input_file,'r',newline='')as file_read: with open(output_file,'w',newlin…