上一页 1 2 3 4 5 6 7 8 ··· 13 下一页
摘要: # import pymysql.cursorsimport pymysql# 连接数据库connect = pymysql.Connect( host='host', port=3306, user='user', passwd='password', db='db', charset='utf8 阅读全文
posted @ 2020-08-10 22:45 徐12 阅读(298) 评论(0) 推荐(0) 编辑
摘要: # 变量赋值# Python 中的变量赋值不需要类型声明。# 每个变量在内存中创建,都包括变量的标识,名称和数据这些信息。# 每个变量在使用前都必须赋值,变量赋值以后该变量才会被创建。# 等号(=)用来给变量赋值。# 等号(=)运算符左边是一个变量名,等号(=)运算符右边是存储在变量中的值。例如:c 阅读全文
posted @ 2020-08-06 11:11 徐12 阅读(194) 评论(0) 推荐(0) 编辑
摘要: # 在python 2.x版本中打印函数是print“”或则print +数字;# 在3.0及以上版本中,需要在"Hello,world"周围加上圆括号。其原因是在3.0及以上版本中,print命令不再是一个关键字,而是一个函数。# Python注释# python中单行注释采用 # 开头。# 第一 阅读全文
posted @ 2020-08-06 11:08 徐12 阅读(125) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/MLing/p/9199478.html 阅读全文
posted @ 2020-07-10 13:25 徐12 阅读(153) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/jswd_50x/article/details/89495311 阅读全文
posted @ 2020-07-10 13:22 徐12 阅读(563) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_43953710/article/details/90035152 阅读全文
posted @ 2020-07-09 14:20 徐12 阅读(1770) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_33183022/article/details/95938686 阅读全文
posted @ 2020-07-08 10:00 徐12 阅读(7098) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/u010598111/article/details/103011962 阅读全文
posted @ 2020-06-19 10:05 徐12 阅读(359) 评论(0) 推荐(0) 编辑
摘要: https://segmentfault.com/a/1190000019903495?utm_source=tag-newest 阅读全文
posted @ 2020-06-16 16:23 徐12 阅读(511) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/sisi_chen/article/details/82389773?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.nonecase&d 阅读全文
posted @ 2020-06-15 13:08 徐12 阅读(4300) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 13 下一页