占位符%s既可以表示字符串str,还可以表示整数int,浮点数float; 占位符%d既可以表示整数int,还可以表示浮点数float(去除整数部分) 占位符%f既可以表示浮点数float,还可以表示整数int(默认保留6位小数) ...
Python基础
pymysql模块的使用方式
一、建立连接并创建表 import pymysql # 连接database conn = pymysql.connect(host="127.0.0.1", port="3306", user="root",password="PXF8i7FmWmS5ErJ2",database="ba",charset="utf8") # 得到一个可以执...
urllib.request 下载文件到本地
一、urllib.request基础 urllib.request.urlopen() 模拟浏览器访问页面,并以utf-8读取展示页面 import urllib.request # 1.定义一个url url = 'http://www.baidu.com' # 2.模拟浏览器发起请求 response...
手把手教你在Linux环境下安装Python3
1、下载python wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz 2、创建存放python的文件夹 mkdir -p /usr/local/python3 3、解压到制定的文件夹 tar -zxvf Python-3.6.1.tgz -C...
解决pip install 不成功问题
40:441: execution error: The directory ‘/Users/lina/Library/Caches/pip/http’ or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions ...
Mac的python版本从2.7升级到 3.8
1、下载python https://www.python.org/downloads/release/python-381/ image.png 2、安装python 3.8.1 下载好的pkg文件进行安装,安装完成之后,python 3.8.1的默认安装路径如下:执行: ope...
Python使用阿里云镜像
临时使用 pip install -i https://mirrors.aliyun.com/pypi/simple/ 包名 以后都使用阿里云的源 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ 查看设置的结果 pip ...
Python3 yield使用总结
示例 import scrapy class QuotesSpider(scrapy.Spider): name = "quotes def start_requests(self): urls = [ 'http://quotes.toscrape.com/page/1/', 'ht...
Python基础 10 MyQR二维码生成模块
# 先导入模块 from MyQR import myqr myqr.run( words='http://weixin.qq.com/r/kzlje9TEE4lsrZAY92yB', # 扫描二维码后,显示的内容,或是跳转的链接 version=5, # 设置容错率 level='H', #...
Python基础 9 smtplib模块发邮件
1、smtplib模块的使用规范 # smtplib 用于邮件的发信动作 import smtplib # 发信方的信息:发信邮箱,QQ邮箱授权码 from_addr = 'xxx@qq.com' password = '你的授权码数字' # 收信方邮箱 to_addr = 'xxx@qq...