some code

找题目:

# -* coding:utf-8 *-
import urllib.request
import re
import os

your_id = 0
his_id = 0


def input_ids():
    y_id = str(input("请输入你的id>>"))
    h_id = str(input("请输入Ta的id>>"))
    with open('id.txt', 'w') as f:
        f.write(y_id)
        f.write('\n')
        f.write(h_id)


def get_ids():
    global your_id, his_id
    with open('id.txt', 'r') as f:
        your_id, his_id = [i.strip() for i in f.readlines()]


def get_problems(Id):
    url = 'http://acm.zcmu.edu.cn/JudgeOnline/userinfo.php?user=' + str(Id)
    try:
        html = urllib.request.urlopen(url).read().decode('utf-8')
        return re.findall(r'\(\d\d\d\d\)', html)

    except:
        print("请输入正确ID")


def output_problems(choice):
    get_ids()
    your_problems = get_problems(your_id)
    his_problems = get_problems(his_id)
    pros_you_havent_solved = [n for n in his_problems if n not in your_problems]
    pros_he_havent_solved = [n for n in your_problems if n not in his_problems]
    if choice == 1:
        print("共有%d个问题" % (len(pros_you_havent_solved)))
        print("----------------------------------------")
        for problem in pros_you_havent_solved:
            print(problem)
    else:
        print("共有%d个问题" % len(pros_he_havent_solved))
        print("----------------------------------------")
        for problem in pros_he_havent_solved:
            print(problem)


def main():
    print("1--查看你没有解决的问题 2--查看Ta没有解决的问题 3--modify或新输入账号")
    choice = int(input("please input your choice>>>"))
    if choice == 1 or choice == 2:
        if not os.path.exists('id.txt'):
            print("--------there is No local data,please input ids first!!!--------")
            input_ids()
        else:
            get_problems(id)
            output_problems(choice)
    elif choice == 3:
        input_ids()
        main()


if __name__ == "__main__":
    while True:
        main()
View Code

 

花瓣:

# coding=utf-8
import random
import time
from multiprocessing import Pool
import requests
from requests.exceptions import RequestException
import json
import os
import re

#    <img src="http://s2.doyo.cn/img/5a/0a/684c9e9e780a3000002e.jpg" id="big_picture">
pattern = re.compile('<img src="(.*?)" id="big_picture" />', re.S)
headers = {
    "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) "
                  "Chrome/65.0.3325.146 Safari/537.36 "
}
data_url = 'http://www.doyo.cn/tu/getdata'
root_url = 'http://www.doyo.cn/picture/{number}/{index}/view'
try:
    os.mkdir('mm')
    os.chdir('mm')
except:
    pass
parent_path = os.getcwd()
j = open('picinfo.json', 'w', encoding='utf-8')


def get_one_page(start):
    params = {
        "cate": "all",
        "tag": "all",
        "sort": "updatetime",
        "start": "0",
        "count": start
    }
    try:
        response = requests.get(url=data_url, params=params)
        if response.status_code == 200:
            return response.text
        return None
    except RequestException:
        print("NetWork Error")


def get_one_data(html):
    data = json.loads(html)
    if data and 'info' in data.keys():
        for info in data.get('info'):
            yield {
                'title': info[0],
                'count': info[1],
                'pic': info[6],
                'number': info[7]
            }


def write_to_file(res):
    os.chdir(parent_path)
    j.write(json.dumps(res, ensure_ascii=False) + '\n')


def get_img_urllist(res):
    # root_url = 'http://www.doyo.cn/picture/{number}/{index}/view'
    for index in range(1, int(res.get('count')) + 1):
        yield root_url.format(number=res.get('number'), index=index)


def save_img(res):
    os.chdir(parent_path)
    try:
        os.mkdir(res.get('title'))
        os.chdir(res.get('title'))
    except:
        pass
    url_list = get_img_urllist(res)
    for imag_url in url_list:
        url = get_img_url(imag_url)
        print(url)
        try:
            filename = str(random.random())
            time.sleep(0.1)
            response = requests.get(url, headers=headers)
            with open(filename + '.jpg', 'wb') as f:
                f.write(response.content)
        except:
            pass


def get_html(url):
    try:
        response = requests.get(url, headers=headers)
        if response.status_code == 200:
            return response.text
        else:
            return None
    except RequestException:
        print("connection error")


def get_img_url(imag_url):
    html = get_html(imag_url)
    res = re.search(pattern=pattern, string=html)
    if res:
        return res.group(1)


def main(start):
    html = get_one_page(start)
    res = get_one_data(html)
    for each in res:
        write_to_file(each)
        save_img(each)


if __name__ == '__main__':
    start = [n * 25 for n in range(0, 1)]
    for i in start:
        main(i)
    j.close()
View Code

字幕to数字:

while True:
     eng = list(str(input(">>")).upper())
     num = len(eng)
     asc = [ord(word)-64 for word in eng]
     cols = 0
     for n in asc:
          rank = num -1
          num = num -1 
          cols += 26**rank * n
     print(cols)
          
View Code

数字to字幕:

转载于:https://www.cnblogs.com/francischeng/p/9714061.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值