-
日期:2021-12-08 14:52:56
点击:59
内容简介:本文实例讲述了Python回调函数用法。分享给大家供大家参考。具体分析如下: 一、百度百科上对回调函数的解释: 回调函数就是一个通过函数指针调用的函数。如果你把函数的指针(地址)作为参数传递给另一个函数,当这个指针被用为调用它所指向的函数时,我们就...
-
日期:2021-12-08 14:52:55
点击:59
内容简介:本文实例讲述了python过滤字符串中不属于指定集合中字符的类。分享给大家供大家参考。具体如下: # -*- coding: utf-8 -*-import setsclass Keeper(object): def __init__(self, keep): self.keep = sets.Set(map(ord, keep)) def __getitem__(self, n): if...
-
日期:2021-12-08 14:52:55
点击:59
内容简介:本文实例讲述了python实现DES加密解密方法。分享给大家供大家参考。具体分析如下: 实现功能:加密中文等字符串 密钥与明文可以不等长 这里只贴代码,加密过程可以自己百度,此处python代码没有优化 1. desstruct.py DES加密中要使用的结构体 ip= (58, 50, 4...
-
日期:2021-12-08 14:52:54
点击:59
内容简介:本文实例讲述了python实现希尔排序算法的方法。分享给大家供大家参考。具体如下: def shellSort(items): inc = len(items) / 2 while inc: for i in xrange(len(items)): j = i temp = items[i] while j = inc and items[j-inc] temp: items[j] = items[j -...
-
日期:2021-12-08 14:52:54
点击:59
内容简介:本文实例讲述了python获得文件创建时间和修改时间的方法。分享给大家供大家参考。具体如下: 这里需要用户从控制台输入文件路径 import os.path, timeimport exceptionsclass TypeError (Exception): passif __name__ == '__main__': if (len(os.sys.argv) 1...
-
日期:2021-12-08 14:52:54
点击:59
内容简介:本文实例讲述了python实现的系统实用log类。分享给大家供大家参考。具体如下: 每个系统都必不可少会需要一个log类,方便了解系统的运行状况和排错,python本身已经提供了一个logger了,很强大,只要稍微封装一下就可以放到自己的系统了,下面是我自己的log...
-
日期:2021-12-08 14:52:54
点击:59
内容简介:本文实例总结了python选择排序算法。分享给大家供大家参考。具体如下: 代码1: def ssort(V):#V is the list to be sorted j = 0 #j is the "current" ordered position, starting with the first one in the list while j != len(V): #this is the replaci...
-
日期:2021-12-08 14:52:53
点击:59
内容简介:本文实例讲述了python获取一组汉字拼音首字母的方法。分享给大家供大家参考。具体实现方法如下: #!/usr/bin/env python # -*- coding: utf-8 -*- def multi_get_letter(str_input): if isinstance(str_input, unicode): unicode_str = str_input else: try:...
-
日期:2021-12-08 14:52:53
点击:59
内容简介:本文实例讲述了python读写ini配置文件方法。分享给大家供大家参考。具体实现方法如下: import ConfigParserimport osclass ReadWriteConfFile: currentDir=os.path.dirname(__file__) filepath=currentDir+os.path.sep+"inetMsgConfigure.ini" @staticmetho...
-
日期:2021-12-08 14:52:53
点击:59
内容简介:本文实例讲述了python实现在windows服务中新建进程的方法。分享给大家供大家参考。具体实现方法如下: 需要安装的软件:python和pywin32,我这里装的分别是python-2.6.amd64、pywin32-217.win-amd64-py2.6 文件名:dma_ws.py #!pythonimport win32serviceuti...