码迷,mamicode.com
首页 > 编程语言 > 详细

做密码学会用到的python函数--kali and windows

时间:2018-03-11 11:49:11      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:def   err   edits   edit   gpo   example   win   license   class   

先创建一个python文件:touch python

查看python版本型号:Python -V

     例如:root@saya:~# python -V
                Python 2.7.13

在kali终端退出python:输入quit()

     例如:NameError: name ‘version‘ is not defined
                >>> quit()
               root@saya:~#

bin():将一个整数转换为一个二进制字符串。其结果是一个有效的Python表达式。如果x不是一个Python int对象,它必须定义一个__index__()方法,该方法返回一个整数。

len(): 返回字符串长度。语法 len( str )。

      例如:root@saya:~# 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():将对象转化为适于人阅读的形式

做密码学会用到的python函数--kali and windows

标签:def   err   edits   edit   gpo   example   win   license   class   

原文地址:https://www.cnblogs.com/nldyy/p/8543152.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!