Python教程

python 元组转列表 列表分组,再组合

本文主要是介绍python 元组转列表 列表分组,再组合,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import pymysql,itertools
connect = pymysql.connect(
             user = 'm',
            password = '0',
            db = 'x',
            host = 'r',
            port = 3306,
            charset = 'utf8'
            )
con =connect.cursor()
sql="select bm from bm51 where bzz='0'"
con.execute(sql)
connect.commit()
sha=con.fetchall()
shaa=list(itertools.chain(*sha))
shaaa=[shaa[x:x+5] for x in range(0,410,5)]
for i in shaaa:
    ii="%".join(i)
    print(ii)

    for av in i:
        con.execute("update bm51 set bzz='1' where bm=(%s)",(av))
        connect.commit()
        

 

这篇关于python 元组转列表 列表分组,再组合的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!