代码如下:
import os
import time
source = [r'e:\python',r'e:\temp']
#print(source)
print('源:')
for spath in source:
print(spath)
target_dir = r'e:\bak'
print('\n目的地:')
print(target_dir)
target = time.str ......
#将GB2312格式转为UTF-8格式
f = codecs.open('e:\TestResult.xml', "rb", "gb2312")
text = f.read().encode("utf-8")
f.close
f = open(options.TestResultFile, "wb")
......
IronPython中的功能太少了,很多常用的Python模块都没有,也加上不。
还得用CLR来扩展。
搞到方法了,如下:
Python code:
import sys #导入sys module;
sys.path.append("c:/Python24/Lib") #增加搜索路径,也就是说当import某个module的时候,将会到已有的搜索路径中查找;
import random #导入C ......
我是在windows平台下,用python2.6 编写了,谢谢大家了
有python2exe这个工具,你上网搜一下
py2exe包,网上有下的。
还有一个Pyrex可以转译为纯C,再直接编译。---我没仔细学习过
我是用pyinstaller转的,但是不知到为什么老是出错。
py2exe只能支持到python2.5,我用的是python2.6
试试cx_Freeze,支 ......
Python 怎样启动远程的QTP,然后执行某个路径下的TEST ?
VB可以这样:
Set qtApp = CreateObject("QuickTest.Application", "192.168.0.102")
qtApp.Launch
qtApp.Visible = True
Dim qtTest
qtApp.Open "\\192.168.0.102\Users\Administrator\Desktop\Test3", True ......
菜手请教诸位老鸟:
我希望编辑zip压缩包里的一个文本文件。怎么解决比较合理?
我的想法:先把ZIP解压,再编辑文本,然后再压缩成ZIP并把解压过的文件删除。不过感觉有些繁琐,可不可以直接读ZIP然后修改呢?
谢谢!
发现writestr可以往ZIP里面写数据,但是写进去后会出现两个重名的文件。
import zipfil ......