py笔记 集合和字典方法,运算符和优先级 字典的增删改查方法: 增: copy setdefault 有则查,五则增 改 update 更新字典 dic= 3 有a则改无a则增 删 clear pop()括号里一定要带key popitem... 05月01日 1,284 views 发表评论 阅读全文
py笔记 列表操作方法 字符串操作: a = 'dudyydyhy' a.count(内容,从第几个开始) a.find(内容,从第几个) a.index(内容)返回内容第一个的位置 a.isdigit判断是否全是数字 a.... 05月01日 1,073 views 发表评论 阅读全文
py工具 python删除病毒 最近电脑老在中毒,并且全部伪装成lnk格式,于是就直接全部删除,速度还挺快的。下面时间脚本。 import os paths = 'e:/' def second_dir(path,dirs = ):... 04月12日 1,422 views 发表评论 阅读全文
py工具 python删除空文件夹脚本 闲来无事自己折腾了一个实用的脚本:删除空文件夹,省的自己上网去找软件了。顺便提高下编程技术水平。 import os #paths = 'D:\Program Files\mfile' #paths ... 04月12日 2,375 views 发表评论 阅读全文
py笔记 python类的初始化方法和类的init方法: class Rectangle: def __init__(self,length,weight):#初始化方法 self.length = length self.weight=weight def... 03月29日 2,088 views 发表评论 阅读全文
py笔记 python用装饰器去对比type函数和isinstance函数运行时间 import time str1 = 'aaaaa' def run_timefunc(func): def new_func(*args,**kwargs): t0 = time.time() fu... 03月29日 1,198 views 发表评论 阅读全文
python-AI python制作贪吃蛇游戏 import pygame import sys import random from pygame.locals import * redColor = pygame.Color(255,0,0)#... 03月09日 1,359 views 发表评论 阅读全文
IT技术 python的if和else的特殊用法(用if跳过else) 下面一个代码是用if跳过了else,看之前可以先试着预测一下y会print出多少? x = -1 y = 99 if (x != 0): if (x>0): y = 1 else: y = 0 ... 11月07日 2,117 views 发表评论 阅读全文
IT技术 python用字典实现switch跳转的简单方法 废话不说 附源码示意 x = 1 y = 2 operator = "/" result = { "+": x + y , "-" : x - y, "*" : x * y, "/" : x / y}... 11月07日 1,366 views 发表评论 阅读全文