09 2013 档案

python idle 清屏问题的解决
摘要:在学习和使用python的过程中,少不了要与python idle打交道。但使用python idle都会遇到一个常见而又懊恼的问题——要怎么清屏?我在stackoverflow看到这样两种答案:1.在shell中输入1 import os2 os.system('cls')这种方法只能在windows系统中cmd模式下的python shell 才管用(因为cls的命令是针对cmd的),在python idle直接返回了一个0的值。2.定义一个cls的函数,每次使用输入cls()即可1 def cls(): 2 print "\n" * 100这种方法是伪 阅读全文

posted @ 2013-09-24 18:47 云化雨 阅读(326) 评论(0) 推荐(0)

System占用端口80
摘要:可尝试如下结束System进程:开始——设置——控制面板——管理工具——服务结束系统服务项:WorldWideWebPublishingService 阅读全文

posted @ 2013-09-11 17:41 云化雨 阅读(230) 评论(0) 推荐(0)

导航