2019年2月19日

第一个shell脚本

摘要: 概述 shell解析器 shell脚本入门 脚本格式 脚本以#!/bin/bash开头(指定解析器) 第一个shell脚本:shellworld 创建一个shell脚本,输出hello world! 脚本的常用执行方式 注意: 第一种执行方法,本质是bash解析器帮你执行脚本,所以脚本本身不需要执行 阅读全文
posted @ 2019-02-19 23:14 0x153_小波 阅读(169) 评论(0) 推荐(0) 编辑

python处理excel之读:xlrd模块

摘要: # -*- coding:utf-8 -*- import xlrd path = r'D:/工作簿1(已自动还原).xlsx' # 打开excel文件读取数据 data = xlrd.open_workbook(path) # 获取excel中所有工作表sheets sheets = data.sheets() # 获取所有sheet的名称集合 sheet_names = data.she... 阅读全文
posted @ 2019-02-19 22:45 0x153_小波 阅读(180) 评论(0) 推荐(0) 编辑