Python教程
Python是一种面向对象的解释型...
-
python 生成随机MAC地址 python">import random Maclist = [] for i in range(1,7): RANDSTR = "".join(random.sample("0123456789abcdef",2)) Maclist.append(RANDSTR) RANDMAC = ":".join(Maclist) print ... 继续阅读python 生成随机MAC地址
:2018-05-17
-
python print amp;quot;hello pythonamp;quot; python">print "hello python" 标签:python ... 继续阅读python print amp;quot;hello pythonamp;quot;
:2018-05-17
-
Python 判断一个进程是否存在 Pythonjiaocheng/20171102/376.html">python">#-*- coding:utf-8 -*- import win32com.client def check_exsit(process_name): WMI = win32com.client.GetObject('winmgmts:') ... 继续阅读Python 判断一个进程是否存在
:2018-05-17
-
python 异常处理 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... 继续阅读python 异常处理
:2018-05-17
-
python删除源文件中的注释并编译 上线需要,将py的源码中注释删掉,然后编译成字节码。写此脚本主要是为了删除注释。当然如果上线不想放py源码,则在最后增加删除源码即可。 python">None 标签:python ... 继续阅读python删除源文件中的注释并编译
:2018-05-17
-
python显示生日是星期几 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 dat... 继续阅读python显示生日是星期几
:2018-05-17
-
python 删除空文件和空文件夹 python">#-*- coding:cp936 -*- """ os.walk() 函数声明:walk(top,topdown=True,onerror=None) 1>参数top表示需要遍历的目录树的路径 2>参数topdown的默认值是"True",表示首先返回目录树下的文件,然后在遍历目录树的子目录.Topdown的值为"Fals... 继续阅读python 删除空文件和空文件夹
:2018-05-17
-
python 第三方Linux版的(网易云)音乐又想出新版了~ python">print "come on~" 标签:python ... 继续阅读python 第三方Linux版的(网易云)音乐又想出新版了~
:2018-05-17
-
python压缩javascript文件代码 通过正规表达式实现“`python ”’ a regex-based JavaScript code compression kludge ”’ import re class JSCompressor(object): def __init__(self, compressionLevel=2, measureCompression=False)... 继续阅读python压缩javascript文件代码
:2018-05-17
-
python(PIL)图像处理(等比例压缩、裁剪压缩) 缩略(水印)图 python">#coding:utf-8 ''' python图片处理 @author:fc_lamp @blog:http://fc-lamp.blog.163.com/ ''' import Image as image #等比例压缩图片 def resizeImg(**args): ... 继续阅读python(PIL)图像处理(等比例压缩、裁剪压缩) 缩略(水印)图
:2018-05-17