本文執行個體講述了python實現的用於搜尋檔案並進行內容替換的類。分享給大家供大家參考。具體實現方法如下:#!/usr/bin/python -O# coding: UTF-8"""-replace string in files (recursive)-display the difference.v0.2 - search_string can be a re.compile() object -> use re.sub for replacingv0.1 - initial
本文執行個體講述了python尋找指定具有相同內容檔案的方法。分享給大家供大家參考。具體如下:python代碼用於尋找指定具有相同內容的檔案,可以同時指定多個目錄調用方式:python doublesdetector.py c:\;d:\;e:\ > doubles.txt# Hello, this script is written in Python - http://www.python.org# doublesdetector.py 1.0pimport os, os.path,
本文執行個體講述了python實現矩陣乘法的方法。分享給大家供大家參考。具體實現方法如下:def matrixMul(A, B): res = [[0] * len(B[0]) for i in range(len(A))] for i in range(len(A)): for j in range(len(B[0])): for k in range(len(B)): res[i][j] += A[i][k] * B[k][j] return
本文執行個體講述了python實現將html表格轉換成CSV檔案的方法。分享給大家供大家參考。具體如下:使用方法:python html2csv.py *.html這段代碼使用了 HTMLParser 模組#!/usr/bin/python# -*- coding: iso-8859-1 -*-# Hello, this program is written in Python - http://python.orgprogramname = 'html2csv - version 2002-0
本文執行個體講述了python實現的簡單RPG遊戲流程。分享給大家供大家參考。具體如下:#RPGrpg = Truewhp = 100mahp = 100hhp = 100MHP = 10def dgrnd () : wa = raw_input ("What does Warrior do?") ma = raw_input ("What does Mage do?") ha = raw_input ("What does Healer do?") if wa == "
本文執行個體講述了RC4檔案加密的python實現方法。分享給大家供大家參考。具體分析如下:基於RC4流密碼編譯演算法,使用擴充的16*16的S盒,32位元組密鑰。目前應該是比較安全的。 剛學習python,好不容易調通了。而且在VC和python下各實現了一遍,兩個平台能夠互相加解密,很有成就感的說。 下面是python3.0中的實現,在2.x下需要稍加修改。# for python 3.0# from 李勃import struct,sys,os,binascii"""
本文執行個體講述了python清除指定目錄內所有檔案中script的方法。分享給大家供大家參考。具體如下:將指令碼儲存為stripscripts.py 調用文法 : python stripscripts.py 使用範例 : python stripscripts.py d:\myfiles# Hello, this is a script written in Python. See http://www.pyhon.orgimport os,sys,string,remessage = ""
本文執行個體講述了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 - inc]