前言:在使用Python完成工作中一些任务的时候,常常要对数据类型进行转换,比如字符串转列表,列表转字符串,字符串转元组等等,下面分享一下常用的字符串转列表 字符串转列表 第一种字符串转列表: t_str="abc" 输出类型: print(type(t_str)) 结果: 输出类型:<class ...
分类:
编程语言 时间:
2021-05-24 14:19:22
阅读次数:
0
官网地址为: http://element-cn.eleme.io/#/zh-CN 1. 基于命令行方式手动安装 安装依赖包 npm i element-ui –S 有时不能识别-S: npm i element-ui 在main.js 导入 Element-UI 相关资源 // 导入组件库 imp ...
分类:
其他好文 时间:
2021-05-24 14:01:14
阅读次数:
0
#Swagger 号称世界上最流行的Api框架; RestFul Api文档在线自动生成工具=>Api文档与API定义同步更新 直接运行,可以在线测试API接口 支持多种语言:(Java,Php...) Swagger官网 在项目中使用Swagger需要springbox: swagger2 ui ...
分类:
其他好文 时间:
2021-05-24 12:50:24
阅读次数:
0
import turtle turtle.color("purple","yellow") turtle.speed(1) turtle.fd(100) turtle.right(60) turtle.fd(100) turtle.right(60) turtle.fd(100) turtle.ri ...
分类:
编程语言 时间:
2021-05-24 12:48:24
阅读次数:
0
1、引入jar包 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger-ui</artifactId> <version>2.9.2</version> </dependency> <dependency ...
分类:
其他好文 时间:
2021-05-24 12:27:05
阅读次数:
0
今天写django项目时,总是没有很好的处理办法,在此记录一下大佬的写法 # models里使用即可from django.db.models import BooleanField as _BooleanField class BooleanField(_BooleanField): def ge ...
分类:
其他好文 时间:
2021-05-24 11:12:37
阅读次数:
0
import cn.itcast.web.utils.DownLoadUtils; import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.ServletOutp ...
分类:
其他好文 时间:
2021-05-24 10:12:02
阅读次数:
0
各位看官可以关注博主个人博客,了解更多信息。 作者:Surpasser 链接地址:https://surpass.org.cn 前言 ? 我的毕设项目中涉及到了多媒体表单提交,以我本来的想法是希望把上传的图片文件存在我的项目中,数据库中只需要存在一个独一无二的图片名字,这样就不会因为项目的移动而需要 ...
分类:
编程语言 时间:
2021-05-24 09:03:38
阅读次数:
0
import matplotlib.pyplot as plt # 第一种,在savefig函数那里设置像素 plt.figure(figsize=(5, 5)) #设置画布尺寸——正方形 plt.scatter(data[:, 0], data[:, 1],label="your label") ...
分类:
其他好文 时间:
2021-05-24 08:25:15
阅读次数:
0
//导包import pandas as pd s1=pd.Series([1,2,3],index=[1,2,3],name='A') s2=pd.Series([10,20,30],index=[1,2,3],name='B') s3=pd.Series([100,200,300],index= ...
分类:
其他好文 时间:
2021-05-24 07:58:49
阅读次数:
0