08 2020 档案
摘要:# Author kevin_hou class School(object): def __init__(self,name,addr): self.name = name self.addr = addr self.students = [] self.staffs = [] def enrol
阅读全文
摘要:# Author kevin_hou #简单的GUI文本编辑器 from tkinter import * from tkinter.scrolledtext import ScrolledText def load(): with open(filename.get()) as file: con
阅读全文
摘要:以下方案皆为引用,仅供参考。 方案一: 1.先声明一下,这种解决方法适用于任何版本的永久破解启动不了的情况(包括:2019版本的)2.下面直接切入正题之所以我们破解之后,不能正常启动的原因有两种:① 之前pycharm可以正常的使用,突然有一天,就启动不了了,这种一般是系统的环境变量出了问题;② 在
阅读全文
摘要:#Author:Kevin_hou import time def timer(func): #timer(test1) func= test1 def deco(*args, **kwargs): start_time= time.time() func(*args, **kwargs) stop
阅读全文