典雅故事

文章
7
资源
0
加入时间
3年0月9天

Python从0到1之模块和包模块

模块Python模块是一个Python文件,以.py结尾,包含了Python对象定义和Python语句模块能定义函数,类和变量,模块里也能包含可执行的代码导入模块的方式# import 模块名import mathmath.sqrt(9) # 3.0# from 模块名 import 功能名from math import sqrtsqrt(9) # 3.0# from 模块名 import * (*表示全部)from math import *sqrt(9) # 3.0# imp

uniapp上传图片转base64码(PC端)

uni.chooseImage({ count: 9, success: res => { this.imageList = this.imageList.concat(res.tempFilePaths); console.log(res); // this.tempFilePaths = res.tempFilePaths[0]; this.urlTobase64(res.tempFilePaths[0]);