2019年12月26日

Excel根据分数,填充相应的五角星,俗称五角星打分;

摘要: 如下excel 首先,我们来了解一下excel单元格,如下图选种单元格,显示C4代表:列行;切换单元格列值行值均变化; 复制单个格格式,想要使列值保持不变;如B2,可以使用$B2,那么横向/纵向拉动(复制单元格格式),列值不变,行值变动; 同理行值保持不变,可以使用B$2; 下面来制作五角星; 横向 阅读全文

posted @ 2019-12-26 23:11 星空6 阅读(1328) 评论(0) 推荐(0)

python3 根据条件删除mysql数据;

摘要: import pymysqlecshop=pymysql.connect('localhost','root','root','ecshop')curs=ecshop.cursor() #建立游标sql="delete from ecs_user_address where tel='1994502 阅读全文

posted @ 2019-12-26 21:24 星空6 阅读(1094) 评论(0) 推荐(0)

python3 更新mysql中部分数据;

摘要: import pymysqlecshop=pymysql.connect('localhost','root','root','ecshop')curs=ecshop.cursor()sql="update ecs_user_address set tel='19945020111' where c 阅读全文

posted @ 2019-12-26 21:16 星空6 阅读(1025) 评论(0) 推荐(0)

python3 根据条件查询mysql数据库中数据;

摘要: import pymysqlecshop=pymysql.connect('localhost','root','root','ecshop')curs=ecshop.cursor()sql="select consignee,email,tel from ecs_user_address wher 阅读全文

posted @ 2019-12-26 21:07 星空6 阅读(2201) 评论(0) 推荐(0)

导航