- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章python中sys模块的介绍与实例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
python版本: Python 2.7.6 。
利用 import 语句输入sys 模块.
当执行import sys后, python在 sys.path 变量中所列目录中寻找 sys 模块文件。然后运行这个模块的主块中的语句进行初始化,然后就可以使用模块了 .
可以通过dir()方法查看模块中可用的方法. 结果如下, 很多我都没有用过, 所以只是简单介绍几个自己用过的方法. 。
1
2
3
4
5
6
7
8
|
$ python
Python
2.7
.
6
(default,
Oct
26
2016
,
20
:
30
:
19
)
[GCC
4.8
.
4
] on linux2
Type
"help"
,
"copyright"
,
"credits"
or
"license"
for
more information.
>>>
import
sys
>>>
dir
(sys)
[
'__displayhook__'
,
'__doc__'
,
'__excepthook__'
,
'__name__'
,
'__package__'
,
'__stderr__'
,
'__stdin__'
,
'__stdout__'
,
'_clear_type_cache'
,
'_current_frames'
,
'_getframe'
,
'_mercurial'
,
'_multiarch'
,
'api_version'
,
'argv'
,
'builtin_module_names'
,
'byteorder'
,
'call_tracing'
,
'callstats'
,
'copyright'
,
'displayhook'
,
'dont_write_bytecode'
,
'exc_clear'
,
'exc_info'
,
'exc_type'
,
'excepthook'
,
'exec_prefix'
,
'executable'
,
'exit'
,
'flags'
,
'float_info'
,
'float_repr_style'
,
'getcheckinterval'
,
'getdefaultencoding'
,
'getdlopenflags'
,
'getfilesystemencoding'
,
'getprofile'
,
'getrecursionlimit'
,
'getrefcount'
,
'getsizeof'
,
'gettrace'
,
'hexversion'
,
'long_info'
,
'maxint'
,
'maxsize'
,
'maxunicode'
,
'meta_path'
,
'modules'
,
'path'
,
'path_hooks'
,
'path_importer_cache'
,
'platform'
,
'prefix'
,
'ps1'
,
'ps2'
,
'py3kwarning'
,
'pydebug'
,
'setcheckinterval'
,
'setdlopenflags'
,
'setprofile'
,
'setrecursionlimit'
,
'settrace'
,
'stderr'
,
'stdin'
,
'stdout'
,
'subversion'
,
'version'
,
'version_info'
,
'warnoptions'
]
1
|
(1) sys.argv 实现从程序外部向程序传递参数 。
sys.argv 变量是一个包含了命令行参数的字符串列表, 利用命令行想程序传递参数. 其中,脚本的名称总是 sys.argv 列表的第一个参数.
(2) sys.path 包含输入模块的目录名列表.
获取指定模块搜索路径的字符串集合,可以将写好的模块放在得到的某个路径下,就可以在程序中import时正确找到。在import导入module_name时,就是根据sys.path的路径来搜索module.name,也可以自定义添加模块路径。 sys.path.append(“自定义模块路径”) 。
(3) sys.exit([arg]) 程序中间的退出, arg=0为正常退出 。
一般情况下执行到主程序末尾,解释器自动退出,但是如果需要中途退出程序,可以调用sys.exit函数,带有一个可选的整数参数返回给调用它的程序,表示你可以在主程序中捕获对sys.exit的调用。(0是正常退出,其他为异常)当然也可以用字符串参数,表示错误不成功的报错信息.
(4) sys.modules 。
sys.modules是一个全局字典,该字典是python启动后就加载在内存中。每当程序员导入新的模块,sys.modules将自动记录该模块。当第二次再导入该模块时,python会直接到字典中查找,从而加快了程序运行的速度。它拥有字典所拥有的一切方法. 。
(5) sys.getdefaultencoding() / sys.setdefaultencoding() / sys.getfilesystemencoding() 。
sys.getdefaultencoding() 。
获取系统当前编码,一般默认为ascii.
sys.setdefaultencoding() 。
设置系统默认编码,执行dir(sys)时不会看到这个方法,在解释器中执行不通过,可以先执行reload(sys),在执行 setdefaultencoding(‘utf8'),此时将系统默认编码设置为utf8。(见设置系统默认编码 ) 。
sys.getfilesystemencoding() 。
获取文件系统使用编码方式,Windows下返回'mbcs',mac下返回'utf-8' 。
(6) sys.stdin, sys.stdout, sys.stderr 。
stdin , stdout , 以及stderr 变量包含与标准I/O 流对应的流对象. 如果需要更好地控制输出,而print 不能满足你的要求, 它们就是你所需要的. 你也可以替换它们, 这时候你就可以重定向输出和输入到其它设备( device ), 或者以非标准的方式处理它们. 。
(7) sys.platform 。
获取当前系统平台. 如:win32、Linux等.
(1) sys.argv sys.path 。
1
2
3
4
5
6
7
8
9
|
$ cat sys
-
test.py
#!/usr/bin/python
import
sys
print
'The command line arguments are:'
for
i
in
sys.argv:
print
i
print
'\n\nThe PYTHONPATH is'
, sys.path,
'\n'
|
运行结果
$ python sys-test.py my name is ubuntu The command line arguments are: sys-test.py my name is ubuntu 。
The PYTHONPATH is ['/work/python-practice', '/usr/lib/python2.7', '/usr/lib/python2.7/plat-x86_64-linux-gnu', '/usr/lib/python2.7/lib-tk', '/usr/lib/python2.7/lib-old', '/usr/lib/python2.7/lib-dynload', '/usr/local/lib/python2.7/dist-packages', '/usr/lib/python2.7/dist-packages', '/usr/lib/python2.7/dist-packages/PILcompat', '/usr/lib/python2.7/dist-packages/gtk-2.0', '/usr/lib/pymodules/python2.7', '/usr/lib/python2.7/dist-packages/ubuntu-sso-client'] 。
(2) sys.exit 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/python
import
sys
def
exitfunc(value):
print
(value)
sys.exit(
0
)
print
(
"hello"
)
try
:
sys.exit(
90
)
except
SystemExit as value:
exitfunc(value)
print
(
"come?"
)
|
运行结果
hello 90 。
程序首先打印hello,在执行exit(90),抛异常把90传给values,values在传进函数中执行,打印90程序退出。后面的”come?”因为已经退出所以不会被打印. 而此时如果把exitfunc函数里面的sys.exit(0)去掉,那么程序会继续执行到输出”come?”. 。
(3) sys.modules 。
sys.modules.keys() 返回所有已经导入的模块列表 。
keys是模块名 。
values是模块 。
modules返回路径 。
1
2
3
4
5
6
7
8
|
#!/usr/bin/python
import
sys
print
(sys.modules.keys())
print
(
"**************************************************************************"
)
print
(sys.modules.values())
print
(
"**************************************************************************"
)
print
(sys.modules[
"os"
])
|
运行结果
['copy_reg', 'sre_compile', '_sre', 'encodings', 'site', '__builtin__', 'sysconfig', '__main__', 'encodings.encodings', 'abc', 'posixpath', '_weakrefset', 'errno', 'encodings.codecs', 'sre_constants', 're', '_abcoll', 'types', '_codecs', 'encodings.__builtin__', '_warnings', 'genericpath', 'stat', 'zipimport', '_sysconfigdata', 'warnings', 'UserDict', 'encodings.ascii', 'sys', 'codecs', '_sysconfigdata_nd', 'os.path', 'sitecustomize', 'signal', 'traceback', 'linecache', 'posix', 'encodings.aliases', 'exceptions', 'sre_parse', 'os', '_weakref'] ******************************************************************************* [<module 'copy_reg' from '/usr/lib/python2.7/copy_reg.pyc'>, <module 'sre_compile' from '/usr/lib/python2.7/sre_compile.pyc'>, <module '_sre' (built-in)>, <module 'encodings' from '/usr/lib/python2.7/encodings/__init__.pyc'>, <module 'site' from '/usr/lib/python2.7/site.pyc'>, <module '__builtin__' (built-in)>, <module 'sysconfig' from '/usr/lib/python2.7/sysconfig.pyc'>, <module '__main__' from 'sys-test1.py'>, None, <module 'abc' from '/usr/lib/python2.7/abc.pyc'>, <module 'posixpath' from '/usr/lib/python2.7/posixpath.pyc'>, <module '_weakrefset' from '/usr/lib/python2.7/_weakrefset.pyc'>, <module 'errno' (built-in)>, None, <module 'sre_constants' from '/usr/lib/python2.7/sre_constants.pyc'>, <module 're' from '/usr/lib/python2.7/re.pyc'>, <module '_abcoll' from '/usr/lib/python2.7/_abcoll.pyc'>, <module 'types' from '/usr/lib/python2.7/types.pyc'>, <module '_codecs' (built-in)>, None, <module '_warnings' (built-in)>, <module 'genericpath' from '/usr/lib/python2.7/genericpath.pyc'>, <module 'stat' from '/usr/lib/python2.7/stat.pyc'>, <module 'zipimport' (built-in)>, <module '_sysconfigdata' from '/usr/lib/python2.7/_sysconfigdata.pyc'>, <module 'warnings' from '/usr/lib/python2.7/warnings.pyc'>, <module 'UserDict' from '/usr/lib/python2.7/UserDict.pyc'>, <module 'encodings.ascii' from '/usr/lib/python2.7/encodings/ascii.pyc'>, <module 'sys' (built-in)>, <module 'codecs' from '/usr/lib/python2.7/codecs.pyc'>, <module '_sysconfigdata_nd' from '/usr/lib/python2.7/plat-x86_64-linux-gnu/_sysconfigdata_nd.pyc'>, <module 'posixpath' from '/usr/lib/python2.7/posixpath.pyc'>, <module 'sitecustomize' from '/usr/lib/python2.7/sitecustomize.pyc'>, <module 'signal' (built-in)>, <module 'traceback' from '/usr/lib/python2.7/traceback.pyc'>, <module 'linecache' from '/usr/lib/python2.7/linecache.pyc'>, <module 'posix' (built-in)>, <module 'encodings.aliases' from '/usr/lib/python2.7/encodings/aliases.pyc'>, <module 'exceptions' (built-in)>, <module 'sre_parse' from '/usr/lib/python2.7/sre_parse.pyc'>, <module 'os' from '/usr/lib/python2.7/os.pyc'>, <module '_weakref' (built-in)>] ******************************************************************************* <module 'os' from '/usr/lib/python2.7/os.pyc'> 。
(4) sys.stdin/sys.stdout/sys.stderr 。
stdin,stdout,stderr在Python中都是文件属性对象, 他们在python启动时自动与shell环境中的标准输入, 输出, 出错相关. 而python程序在shell中的I/O重定向是有shell来提供的,与python本身没有关系.python程序内部将stdin, stdout, stderr读写操作重定向到一个内部对象. 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
标准输入
#!/usr/bin/python
import
sys
#print('Hi, %s!' %input('Please enter your name: ')) python3.*版本用input
print
(
'Hi, %s!'
%
raw_input
(
'Please enter your name: '
))
#python2.*版本用raw_input
运行结果:
Please enter your name: er
Hi, er!
等同于:
#!/usr/bin/python
import
sys
print
(
'Please enter your name:'
)
name
=
sys.stdin.readline()[:
-
1
]
print
(
'Hi, %s!'
%
name)
标准输出
print
(
'Hello World!\n'
)
等同于:
#!/usr/bin/python
import
sys
sys.stdout.write(
'output resule is good!\n'
)
其他实验
#!/usr/bin/python
import
sys
for
i
in
(sys.stdin, sys.stdout, sys.stderr):
print
(i)
|
执行结果
python sys-test1.py <open file '<stdin>', mode 'r' at 0x7fa4e630f0c0> <open file '<stdout>', mode 'w' at 0x7fa4e630f150> <open file '<stderr>', mode 'w' at 0x7fa4e630f1e0> 。
到此这篇关于python中sys模块的介绍与实例的文章就介绍到这了,更多相关python中sys模块内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://blog.csdn.net/zyc_love_study/article/details/78983817 。
最后此篇关于python中sys模块的介绍与实例的文章就讲到这里了,如果你想了解更多关于python中sys模块的介绍与实例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我正在编写一个 python 程序,它将所有输入都大写(替代非工作 tr '[:lowers:]' '[:upper:]')。语言环境是 ru_RU.UTF-8,我使用 PYTHONIOENCODIN
我收到错误;MVC Microsoft JScript 运行时错误:Sys.ArgumentTypeException:“Sys._Application”类型的对象无法转换为“Sys._Applic
尝试使用 IDLE 在 Python 3.7.4 版本中安装 sys 包时,出现以下错误: 输入:C:\Users\UserName\Downloads>pip install sys 输出: 采集系
我对 Python 还很陌生,所以我还在学习这门语言。我遇到的一件事是重新分配 sys.stdout 以更改打印的默认输出。所以我写了这个作为测试: import sys sys.stdout = o
我应该选择 sys.exc_info()在 sys.last_value和 friend (sys.last_type,sys.last_traceback)? 最佳答案 查看sys.last_val
我的 shell 脚本中出现奇怪的错误。使用这个: $find /sys/class/ -name temp -exec cat '{}' ';' 我得到输出 77000 find: `/sys/ke
我只想从 sys 库导入 argv 和可执行函数。 所以我使用 from 和 import 来指定这些函数,如下所示:- from sys import argv from sys import ex
我想找到调用我的程序的命令行参数,即 sys.argv,但我想在 Python 使 sys.argv 可用之前执行此操作.这是因为我在 usercustomize.py 中运行代码,该代码由 site
sys和os.sys在python中有什么区别?我见过很多项目在导入os时使用sys。当我尝试 dir(sys) 和 dir(os.sys) 时,它们的功能相同,输出也相同。 我经常看到像这样使用 s
create table T ( ID number, COL1 SYS.XMLTYPE )XMLType COLUMN COL1 STORE AS CLOB; select obj#,col
下面的 SQL 似乎可以工作,但我想知道是否有更好的方法来编写它。我正在尝试选择具有特定名称的所有 View 和表。如果找到匹配项,则应该只有一个返回值。 SELECT DISTINCT name F
在我的客户端(使用 LWJGL)中,我使用以下代码: private static long getTime() { return (Sys.getTime() * 1000) / Sys.g
我的老板让我看一些旧代码,其中所有内容都被发送到 stderr。我知道 stderr 应该有警告和错误,但他们什么时候才真正应该转到 stdout? 此程序是一项服务。它发送到 stderr 的一些消
使用 importlib,“Meta Path Finder”(通过遍历 sys.meta_path 找到)和“Path Entry Finder”(通过遍历 sys.path_hooks 找到)有什
我正在运行这个命令来安装 os_sys 包: pip3 install os_sys 但收到此错误: ERROR: os-sys has an invalid wheel, could not rea
如果我查询sys.dm_database_encryption_keys,它返回的encryption_state为3(加密),percent_complete 0。如果我查询 sys.databas
有人可以向我解释一下这些不同的环境函数具体有什么作用吗?即哪个返回什么帧?阅读文档后我完全困惑了(http://stat.ethz.ch/R-manual/R-patched/library/base
查看其他 stackoverflow 帖子后,我似乎无法解决这个重定向问题。我想做的是抑制 stdout 和 stderr,然后在捕获错误后恢复它们。抑制效果很好,但恢复它们只成功了一半。 如果我尝试
这个问题在这里已经有了答案: Understanding slicing (38 个答案) 关闭 3 个月前。 我写了这段代码: #!/usr/bin/env python import sys i
我正在创建一个名为 Qt ( Github link ) 的模块,我在其中为另一个模块起别名(例如 PyQt4),这样当我导入 Qt 我实际上正在导入 PyQt4: from Qt import Qt
我是一名优秀的程序员,十分优秀!