目录遍历漏洞
import os
path = 'G:\\产品手册'
print('包含的目录有')
for root,dirs,files in os.walk(path,topdown=True):
    for name in  dirs :
        print(os.path.join(root,name))
    for name in  files:
        print(os.path.join(root,name))
        
        
网络流量换算 -- 字节-to
def formatbyte(number):
    for(scale,label) in [(1024*1024*1024,'GB'),(1024*1024,'MB'),(1024,'KB')]:
        if number >= scale:
            return '%2.f %s' %(number*1.0/scale,label)
        elif number ==1 :
            return '1 字节'
        else:
            byte = '%.2f' %( number or 0)
    return (byte[:-3] if byte.endswith('.00') else byte) + '字节'
    
    连接数据库
    
    
    import pymysql
print('连接到mysql服务器...')
db = pymysql.connect(
    host="10.50.99.247",
    user="network",
    passwd="xxxx”
    port=3306,
    db="network",
    charset='utf8',
    cursorclass=pymysql.cursors.DictCursor)
cursor = db.cursor()
cursor.execute("select * from net_dev")
data = cursor.fetchone()
print(data)
db.close()