摘要:
list转化为series data = [1,2,3,4,5,6] array = np.array(data)array_str = array.astype('str') #数据类型转换为字符串 print(array) series转化为list ori_cent_date = pd.rea 阅读全文
摘要:
基本语法 range(start, stop[, step]) 参数说明: start: 计数从 start 开始。默认是从 0 开始。例如range(5)等价于range(0, 5); stop: 计数到 stop 结束,但不包括 stop。例如:range(0, 5) 是[0, 1, 2, 3, 阅读全文
摘要:
堡垒机访问记录 ''' 堡垒机访问记录自动化 ''' import pandas as pd import numpy as np # 显示全部列 pd.options.display.max_columns = 999 # 列对齐 pd.set_option('display.unicode.am 阅读全文