pythonchallenge_level6

简介: pythonchallenge各关解题

level6

地址:http://www.pythonchallenge.com/pc/def/channel.html
源码:git@code.aliyun.com:qianlizhixing12/PythonChallenge.git。
问题:使用zipfile对象观察打印。

#!/usr/bin/env python3
# -*- coding:UTF-8 -*-

# Level 6

import os
import urllib.request

filename = "channel.zip"
url = "http://www.pythonchallenge.com/pc/def/" + filename
response = urllib.request.urlopen(url)
body = response.read()
response.close

if os.path.exists(filename): os.remove(filename)
tmpzip = open(filename, "wb")
tmpzip.write(body)
tmpzip.close()

import zipfile

tmpzip = zipfile.ZipFile(filename, mode = "r")

sid = "90052"
comments = []
while True:
    sfile = sid + ".txt"
    comments.append(tmpzip.getinfo(sfile).comment.decode(encoding="gbk"))
    sid = tmpzip.read(sfile).decode(encoding="gbk").split(" ")[-1]
    if not sid.isdigit():
        break

print("Level 6:\n", "".join(comments))

if os.path.exists(filename): os.remove(filename)
相关文章
|
5月前
[WUSTCTF 2020]level3
[WUSTCTF 2020]level3
36 0
|
开发框架 Java API
J2EE Specification Level
J2EE Specification Level
118 0
0227show all segment level statistics
[20180227]show all segment level statistics.txt https://orainternals.wordpress.com/2013/06/12/dude-where-is-my-redo/ REM Author : Ri...
1020 1
|
关系型数据库 测试技术 Oracle
[20180102]statistics_level=BASIC.txt
[20180102]statistics_level=BASIC.txt --//一个测试环境不知道谁设置statistics_level=BASIC,导致重启出现错误,自己在测试环境模拟看看: SYS@book> create pfile='/tmp/@.
1259 0
|
Python
pythonchallenge_level11
pythonchallenge各关解题
1106 0
|
Python
pythonchallenge_level8
pythonchallenge各关解题
1427 0
|
Python
pythonchallenge_level12
pythonchallenge各关解题
1281 0