2010年2月4日
摘要: # _*_ coding: utf-8 _*_import sys,cmdfrom cdctools import *class PyCDC(cmd.Cmd): def __init__(self): cmd.Cmd.__init__(self) self.CDROM='G:/' self.CDDIR='cdc/' self.prompt="(PyCDC)>-->>" self.... 阅读全文
posted @ 2010-02-04 21:54 猪总的小短裤 阅读(244) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:utf-8 -*-import sys,cmdclass PyCDC(cmd.Cmd): def __init__(self): cmd.Cmd.__init__(self) def help_EOF(self):///help_和do_的标志要成对出现,help是提示帮助的内容,do是具体的执行代码 print "Quits the program" def do_EO... 阅读全文
posted @ 2010-02-04 19:36 猪总的小短裤 阅读(400) 评论(0) 推荐(0) 编辑