这两天晚上帮学经济的儿子从两个excel表中提取了些数据供他做数据分析。
第一次用python操作excel表,记录一下。
单纯读取写入excel数据不难,关键是对数据又进一步提取了有效值。
大约 2 分钟
这两天晚上帮学经济的儿子从两个excel表中提取了些数据供他做数据分析。
第一次用python操作excel表,记录一下。
单纯读取写入excel数据不难,关键是对数据又进一步提取了有效值。
import os
import re
'''
批量执行命令, example:
cwebp 80 /xxx/dir/bc_00029.png -o /yyy/dir/tts_status_29.webp
'''
def getFlist(path):
return os.listdir(path)
source_dir = '/xxx/dir/'
target_dir = '/yyy/dir/'
isExists=os.path.exists(target_dir)
if not isExists:
os.makedirs(target_dir)
print(target_dir + ' 创建成功')
else:
print(target_dir + ' 目录已存在')
file_names = getFlist(source_dir)
for file_name in file_names:
file_count = '0';
file_counts = re.findall('[1-9]\d*', file_name)
if len(file_counts) > 0:
file_count = file_counts[0]
cmd = "cwebp 80 %s%s -o %stts_start_%s.webp" % (source_dir, str(file_name), target_dir, file_count)
print(cmd)
os.system(cmd)
工作中主力机用MacBook,平常有些工具需要用Ubuntu(比如MTK装机软件)。
MacBook切换到Ubuntu主机的时候每次都需要将显示器从MacBook连接到Ubuntu主机上,比较麻烦。
Ubuntu每次开机都发送ip地址到指定邮箱,然后在MacBook上用vnc通过ip远程连接Ubuntu(Ubuntu主机接了个HDMI欺骗器,这样远程连接的时候才能显示桌面)
获取ip地址用到ifconfig
这个命令,先在终端试一下有没有安装,没装的话先执行下面命令安装: