先创建一个python文件:touch python
查看python版本型号:Python -V
例如:[email protected]:~# python -V
Python 2.7.13
在kali终端退出python:输入quit()
例如:NameError: name ‘version‘ is not defined
>>> quit()
[email protected]:~#
bin():将一个整数转换为一个二进制字符串。其结果是一个有效的Python表达式。如果x不是一个Python int对象,它必须定义一个__index__()方法,该方法返回一个整数。
len(): 返回字符串长度。语法 len( str )。
例如:[email protected]:~# python
Python 2.7.13 (default, Jan 19 2017, 14:48:08)
[GCC 6.3.0 20170118] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> str="this is string example...wow!!!"
>>> print len(str);
31
str():将对象转化为适于人阅读的形式