摘要:
显示 set nu 取消显示 set nonu 就是这么简单orz tips: 方法一: 1、显示当前行行号,在VI的命令模式下输入 :nu 2、显示所有行号,在VI的命令模式下输入 :set nu 方法二: 使用vi编辑~/.vimrc文件,在该文件中加入一行”set nu”,添加内容不含引号, 阅读全文
摘要:
遇到的提示错误:_csv.Error: new-line character seen in unquoted field - do you need to open the file in universal-newline mode? 错误code如下: 解决方法: 将上述代码第7行写成 wit 阅读全文
摘要:
import os import sys import glob from datetime import date, time, datetime, timedelta from operator import itemgetter from math import exp, log, sqrt inputPath = sys.argv[1] for input_fi... 阅读全文