本文目录一览:
python入门教程
《【3】学习视频》百度网盘资源免费下载
链接:
提取码:m6tm
【3】学习视频|python视频教程|Python入门基础视频教程|lets python 视频教程|Lets-python-017-文件和输入输出01.avi|Lets-python-016-条件和循环02-练习题和生成器.avi|Lets-python-015-条件和循环01.avi|Lets-python-014-映射和集合02.avi|Lets-python-013-映射和集合01.avi|Lets-python-012-序列04-02.avi|Lets-python-012-序列04-01.avi|Lets-python-011-del和getattr.avi|Lets-python-010-序列03.avi|lets-python-009-序列02.avi|Lets-python-008-序列01.avi
求python入门视频教程,云盘分享谢谢
《视频-python从0开始学编程》百度网盘资源免费下载
链接:
提取码:bwqf
视频-python从0开始学编程|day9视频.rar|day8视频.rar|day7视频.rar|day6视频.rar|day5视频.rar|day4视频.rar|day3视频.rar|day2视频.rar|day1视频.rar|day19视频.rar|day18视频.rar|day17视频.rar|day16视频.rar|day15视频.rar
Python视频教程,百度云
[python视频教程] lets python视频教程免费下载
链接:
提取码:dxpn
[python视频教程] lets python 视频教程|Lets-python-017-文件和输入输出01.avi|Lets-python-016-条件和循环02-练习题和生成器.avi|Lets-python-015-条件和循环01.avi|Lets-python-014-映射和集合02.avi|Lets-python-013-映射和集合01.avi|Lets-python-012-序列04-02.
python 编程
代码使用python3.x版本,依赖第三方库openpyxl
安装openpyxl命令如下:
pip install openpyxl
python代码如下:
import openpyxl
import re
INPUT_FILE = 'input.txt'
OUTPUT_FILE = 'result.xlsx'
with open(INPUT_FILE, 'r', encoding='utf-8') as f:
wb = openpyxl.Workbook()
ws = wb.active
for line in f:
words = re.split('[,,\n]', line)
vals = words[2:]
for w in vals:
try:
float(w)
except ValueError as e:
words.remove(w)
else:
if words.count(w) 1:
for i in range(words.count(w)-1):
words.remove(w)
vals = words[2:]
vals.sort(reverse=True)
if len(vals) 4:
vals = vals[:3] + vals[-1:]
words = words[:2] + vals
ws.append(words)
wb.save(OUTPUT_FILE)
若代码格式有乱,请参照下图:
测试结果: