Python笔记(5)
摘要:
模块一.简介模块基本上就是一个包含了所有你定义的函数和变量的文件。为了在其他程序中重用模块,模块的文件名必须以.py为扩展名。例如:#!/usr/bin/python# Filename: using_sys.pyimport sysprint 'The command line arguments are:'for i in sys.argv: print iprint '\n\nThe PYTHONPATH is', sys.path, '\n' 输出为:$ python using_sys.py we are argumentsThe co 阅读全文
posted @ 2009-10-14 18:22 karying 阅读(173) 评论(0) 推荐(0) 编辑