logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

未找到插件 ‘org.springframework.boot:spring-boot-maven-plugin:’

未找到插件 ‘org.springframework.boot:spring-boot-maven-plugin:’解决方案

#maven#spring#spring boot
plotly绘图的风格样式template属性

都有啥样的:'plotly', 'ggplot2', 'seaborn', 'simple_white', 'plotly_white', 'plotly_dark', 'presentation', 'xgridoff', 'ygridoff', 'gridon', 'none'以折线图为例,查看plotly绘图的风格样式template属性。

文章图片
#python#开发语言
2020年第十一届蓝桥杯大赛python组省赛真题(更新中)

1. 试题A:门牌制作这个很好做,直接暴力求解代码:result=0for i in range(1,2021):result=result+str(i).count('2')print(result)答案:6242. 试题B:寻找2020代码:暴力求解l = []with open('2020.txt') as fp:for line in fp.readlines():l.append(lis

#蓝桥杯#职场和发展
2021年第十二届蓝桥杯大赛省赛python大学组真题加解析(更新中)

1.试题A:卡片思路:0-9每个数字各有2021张,1肯定是用得最快的,就是计算从1到某个数字之间共有2021个数字1代码:s=0for i in range(1,5000):s=s+str(i).count('1')if s==2021:print(i)break最后答案:31812. 试题B:直线思路:(借鉴别人的思路)自己一开始还在想怎么用y=kx+b的形式来表示直线,这种形式的竖直.

#蓝桥杯
到底了