python个人总结
行动是最好的承诺
这个作者很懒,什么都没留下…
展开
-
python基础知识
python2中设置出现中文报错的解决方法#第一行添加以下文件(官方建议) // #-*-codeing:utf-8 -*- #或者添加 #coding=utf-8原创 2017-12-11 23:17:12 · 222 阅读 · 0 评论 -
python个人总结(二)
环境的配置 // 基本语法整理原创 2018-07-17 15:12:04 · 5022 阅读 · 1 评论 -
Python第一个爬虫demo(写作笔记)
Python第一个爬虫demo(写作笔记 # coding:utf-8 from bs4 import BeautifulSoup from urllib import request import re test_url = 'http://dev.ruomengtv.com' def getResponse(url): url_response = request.urlopen(u...原创 2018-11-29 14:59:45 · 385 阅读 · 0 评论 -
python操作数据库demo
# coding:utf-8 import pymysql def query_sql(sql): # 打开数据库连接 db = pymysql.connect("localhost", "root", "root", "test") # 使用 cursor() 方法创建一个游标对象 cursor cursor = db.cursor() try: ...原创 2018-12-11 13:54:25 · 282 阅读 · 0 评论