标签:
14,python如何创建进程并在父子进程通信
示例代码如下:
15 py2exe
16,python如何判断当前操作系统的类型:
def UsePlatform():
sysstr = platform.system()
if(sysstr =="Windows"):
print ("Call Windows tasks")
elif(sysstr == "Linux"):
print ("Call Linux tasks")
else:
print ("Other System tasks")
17,python文件夹复制:
以下转自:http://www.oschina.net/code/snippet_16840_1654
标签:
原文地址:http://www.cnblogs.com/zhiliao112/p/4237254.html