#!/usr/bin/env python # coding: utf-8 # # 模块sys:系统相关 # sys模块是与系统相关的标准库模块: # In[1]: import sys # ## 命令行参数 # sys模块一个重要的作用是解析命令行的参数。 # In[2]: get_ipython().run_cell_magic('writefile', 'print_args.py', 'import sys\nprint(sys.argv)\n') # 运行这个程序: # In[3]: get_ipython().system('python print_args.py 1 foo') # `sys.argv`是一个列表,是`python`命令后的各个参数列表,且所有的值都为字符串。如果参数字符串中有空格,需要用引号: # In[4]: get_ipython().system('python print_args.py 1 zhang san "zhang san"') # ## 系统参数 # 查看Python搜索模块的系统路径,不同操作系统不同: # In[5]: sys.path # ## 操作系统信息 # 变量`sys.platform`用来显示当前操作系统的相关信息: # In[6]: sys.platform # 不同的操作系统对应不同的值: # - Windows: win32。 # - Mac: darwin。 # - Linux: linux2。 # In[ ]: