发布时间:2021-08-26 17:14:25
import matplotlib.pyplot as pltimport numpy as npimport math# plot可视化def Fun_show(x, y, title): plt.scatter(x, y) plt.title(title) plt.show()# sigmoid# sigmoid输出总是大于零,因此前一层对后.........【阅读全文】
发布时间:2021-08-25 17:26:43
"""function: IMAP收取邮件detail: 支持最后一封邮件的文本打印以及所有附件的下载author: w.royeedate: 2021-08-21"""import emailimport email.headerimport imaplibfrom bs4 i.........【阅读全文】
发布时间:2021-08-24 17:19:24
# -*- codeing = utf-8 -*-# @Time : 2021/8/20 16:22# @File : translate.py# @Software : PyCharmimport requestsimport reimport tkinter as tkfrom tkinter import ttkfrom tkinter import *Findresult = re.compile(r'class="transtext">(.*?)</textarea><br />')head = {.........【阅读全文】
发布时间:2021-08-23 17:30:34
import jsonimport sys# 引入mqtt包import paho.mqtt.client as mqtt# 使用独立线程运行from threading import Thread# 建立mqtt连接def on_connect(client, userdata, flag, rc): if rc == 0: # 连接成功.........【阅读全文】
发布时间:2021-08-20 17:19:13
def start_game(): # 播放音乐 pygame.mixer.music.play(-1) # 定义存分数的全局变量 global score score = 0 # 定义存放玩家键盘输入运动方向的.........【阅读全文】