最新 最热

python3 pymysql实现事务处

try:    cursor.execute(sql_1)      cursor.execute(sql_2)      cursor.execute(sql_3)  except Exception as e:    connect.rollback()  # 事务回滚    print('事务处理失...

2020-01-03
1

python3学习之异常

##异常处理#try:#    pass#except Exception as ex:   Exception(捕获所有错误)可以换成任何异常类型,代表只捕获指定错误,# 可以写多个except#    pass##异常类型:####完整的异常代码:# try:#    rais...

2020-01-03
1

python3 猜数字游戏

x=10    #the number you set to gessi=1n=6while(i<=6):    print("@_@:")    print(n)    print(" times left")    y = input("please input the number you gues......

2020-01-03
1

python3之发送邮件

#/usr/bin/env python3# encoding: utf-8#@author: Lejie#@software: PyCharm Community Edition#@file: learn_smtp.py#@time: 2017/6/26 16:29import smtplibimp...

2020-01-03
1

python3学习之md5加密

import hashlib## #####md5#####双重加密,核对密码时也需要如此hash = hashlib.md5(bytes(&#x27;tttt&#x27;, encoding=&#x27;utf-8&#x27;))  #tttt是第一层加密,在比较md5时也需要这么做hash.update(bytes(&#x2...

2020-01-03
1

Python3实现PoC——CVE-20

一、演示一下CVE-2014-6271的利用效果二、代码+注释import requestsimport argparse# 获取参数parser = argparse.ArgumentP

2020-01-03
1

python3微信企业号 发送图文

本例 只适用于企业号,公众号没试,可自行测试,方法差不多。有事找官网开发文档。#!/usr/bin/env python# -*- coding: utf-8 -*-import requestsimport jsonimport urllib.requestID="xxxxxxxxxxxx"  Se......

2020-01-03
1

python3学习之特殊变量

#特殊变量#__doc__        获取模块注释#__file__       当前执行文件的路径#__cached__    对应pyc文件的位置#__name__      执行当前文件的时候,等于__main__;否则不等于;一般在主文件里写...

2020-01-03
1

个人对于python3继承的理解

#继承,这样理解就对了,你的就是我的,但是我的还是我的,但是你有我也有的,我就不稀罕你的,所以调用了父类的时候,self就是我,而不是你class you:    def __init__(self,name):        self.name=name ...

2020-01-03
1

乌班图的世界——进入python3大门

用户命令:python3

2020-01-03
1