sys

sys.argv           命令行参数List,第一个元素是程序本身路径
sys.exit(n)        退出程序,正常退出时exit(0)
sys.version        获取Python解释程序的版本信息
sys.maxint         最大的Int值
sys.path           返回模块的搜索路径,初始化时使用PYTHONPATH环境变量的值
sys.platform       返回操作系统平台名称
sys.stdout.write('please:')
val = sys.stdin.readline()[:-1]

例 显示进度条小程序:

import sys,time
for i in range(30):
    a = '*'
    sys.stdout.write('\r')
    sys.stdout.write('%%%s | %s' % (int(i/29*100), int(i/29*100)*a))
    sys.stdout.flush()
    time.sleep(0.2)

 

posted @ 2016-05-19 11:24  Echo/  阅读(208)  评论(0编辑  收藏  举报