《Programming Python 3rd》学习笔记


                                                                                                                7 / 15 / 2008
    Python在多数情况下是跨平台的,对于与平台相关的部分则进行sys.platform检测。例如底层的控制台交互可能随平台不同而不同,则通过检测sys.platform来选择合适的工具
    sys.path在解释器启动时根据PYTHONPATH和系统缺省的目录进行初始化,可以在运行时对其进行改动。有时PYTHONPAHT是不够的,一些程序,例如web服务器脚本,可能在启动时配置sys.path来包含要访问的目录
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
               
                sys.version                                          字符串
sys.platform                                        字符串
sys.path                                                  字符串list
sys.modules                                         dictionary
sys.builtin_module_names       字符串list
sys.argv                                                  字符串list
sys.stdin                                           I/O stream
sys.stdout
sys.stderr
sys.getrefcount                        函数
sys.exit                                           函数