学习地址:https://www.bilibili.com/video/BV1mf4y1S72o?p=11 实例练习一 using System; using System.Collections.Generic; using System.Linq; using System.Text; usin ...
分类:
其他好文 时间:
2020-07-11 21:22:24
阅读次数:
136
1 #!/usr/bin/env python3 2 # coding=utf-8 3 # Version:python3.6.1 4 # Project:practice 5 # File:Person.py 6 # Data:2020/7/11 15:58 7 # Author:LGSP_Har ...
分类:
编程语言 时间:
2020-07-11 19:40:58
阅读次数:
74
E. K-periodic Garland 题意 给出一个长度为 n 的 01 串,现在规定一个串如果相邻两个 1 的位置相隔为 k ,那么这个串就是好串,现在你可以将某个位置的字符翻转,问最少需要多少次可以把这个串变成一个好串? 思路 本来是练习DP的,但是想着想着跑偏了。 好串格式应该是0000 ...
分类:
其他好文 时间:
2020-07-11 19:33:40
阅读次数:
40
#include<iostream> #include<cmath> #include<algorithm> #include<string> #include<cstring> #define DEBUG if( 1 )//是否输出调试用信息 using namespace std; int W, ...
分类:
其他好文 时间:
2020-07-11 19:21:29
阅读次数:
61
题目:有n个人围成一圈,顺序排号。从第一个人开始报数(从1到3报数),凡报到3的人退出圈子,问最后留下的是原来第几号的那位。 程序分析:无。 实例: 1 #include <stdio.h> 2 void main() 3 { 4 int num[50],n,*p,j,loop,i,m,k; 5 p ...
分类:
其他好文 时间:
2020-07-11 15:37:23
阅读次数:
59
题目:写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度。 程序分析:无。 实例: 1 #include <stdio.h> 2 #include <stdlib.h> 3 int main() 4 { 5 int len; 6 char str[20]; 7 printf(" ...
分类:
其他好文 时间:
2020-07-11 15:33:52
阅读次数:
51
import pandas excel=pandas.read_excel(r'E:\pandas练习\成绩单.xlsx') b=excel.style.bar(color='orange',subset=['test_1','test_2','test_3']) b.to_excel() ...
分类:
其他好文 时间:
2020-07-11 12:35:47
阅读次数:
57
# 用列表推导式做下列小题 # 1.过滤掉长度小于3的字符串列表,并将剩下的转换成大写字母 l1 = ['string', 'str', 'st'] li = [i.upper() for i in l1 if len(i) < 3] # 2.求(x,y)其中x是0-5之间的偶数,y是0-5之间的奇 ...
分类:
其他好文 时间:
2020-07-11 12:32:38
阅读次数:
73
一:输入的区别 1.在Python3中input功能会等待用户的输入,用户输入任何内容,都存成字符串类型,然后赋值给等号左边的变量名 username = input('请输入用户名:') print(type(username)) # 输入:darker # 输出:<class 'str'> # ...
分类:
编程语言 时间:
2020-07-11 12:27:49
阅读次数:
76
import seaborn import pandas excel=pandas.read_excel(r'E:\pandas练习\成绩单.xlsx') color_map=seaborn.light_palette('green',as_cmap=True) a=excel.style.back ...
分类:
其他好文 时间:
2020-07-11 11:18:42
阅读次数:
71