Python教程
Python教程:包含了所有代写案例以及部分答案
-
通过正规表达式实现“`python ”’ a regex-based JavaScript code compression kludge ”’ import re class JSCompressor(object): def __init__(self, compressionLevel=2, measureCompression=False): ”’ compressionLevel: 0 – no compression, s … 继续阅读“python压缩javascript文件代码”
:
-
#-*- coding:cp936 -*- """ os.walk() 函数声明:walk(top,topdown=True,onerror=None) 1>参数top表示需要遍历的目录树的路径 2>参数topdown的默认值是"True",表示首先返回目录树下的文件,然后在遍历目录树的子目录.Topdown的值为"False"时, 则表示先遍历目录树的子目录,返回子目录下的文件,最后返回根目录下的文件 3> … 继续阅读“python 删除空文件和空文件夹”
:
-
# find the day of the week of a given date # Python will trap impossible dates like (1900, 2, 29) # tested with Python24 vegaseat 01aug2005 from datetime import date # a typical birthday year, month, day # or change it to your own birthday… birthda … 继续阅读“python显示生日是星期几”
:
-
def main(): try: for line in readfile(‘lines.txt’): print(line.strip()) except IOError as e: print(‘could not open the file:’,e) except ValueError as e: print(‘bad filename:’,e) def readfile(filename): if filename.endswith(".txt"): fh = ope … 继续阅读“python 异常处理”
:
-
#-*- coding:utf-8 -*- import win32com.client def check_exsit(process_name): WMI = win32com.client.GetObject(‘winmgmts:’) processCodeCov = WMI.ExecQuery(‘select * from Win32_Process where Name="%s"’ % process_name) if len(processCodeCov) > … 继续阅读“Python 判断一个进程是否存在”
:
-
python根据出生日期计算年龄的代码,运行后会提醒用户输出出生的年月日,然后输出年龄,可以改写为一个通用函数 from time import * #a function to find your age def age(): print "Enter Your Date of Birth" d=input("Day:") m=input("Month:") y=input("Year:") #get the cu … 继续阅读“python根据出生日期计算年龄的代码”
:
-
# -*- coding: utf-8 -*- # 原题:一个老师从2到9中取两个数字,给甲说了和,给乙说了积, # 甲说我不知道,乙说我也不知道,甲说你不知道那我就知道了, # 乙说你知道了那我也知道了 # 这两个数分别是多少? # ======================================================== # 为了方便表示,记两个数字的组合为字符串i&j,如2&3这种格式 # 以下是工具函数 # ============= … 继续阅读“python 解决把两个数字的和、积分别告诉两个人猜两个数字组合的问题”
: