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