码迷,mamicode.com
首页 >  
搜索关键字:练习    ( 21830个结果
Revit 二次开发 元素创建与修改练习
学习地址: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
Python就业班——初识面向对象——练习——Person
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 DP | 贪心
E. K-periodic Garland 题意 给出一个长度为 n 的 01 串,现在规定一个串如果相邻两个 1 的位置相隔为 k ,那么这个串就是好串,现在你可以将某个位置的字符翻转,问最少需要多少次可以把这个串变成一个好串? 思路 本来是练习DP的,但是想着想着跑偏了。 好串格式应该是0000 ...
分类:其他好文   时间:2020-07-11 19:33:40    阅读次数:40
[暑假集训]开训复健练习赛:B - Find a way ——HDU - 2612
#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
C 实战练习题目69
题目:有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
C 实战练习题目70
题目:写一个函数,求一个字符串的长度,在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
格式化3
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
12 练习题:生成器 列表推导式 内置函数Ⅰ
# 用列表推导式做下列小题 # 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
练习题00 - Python2和Python3的区别
一:输入的区别 1.在Python3中input功能会等待用户的输入,用户输入任何内容,都存成字符串类型,然后赋值给等号左边的变量名 username = input('请输入用户名:') print(type(username)) # 输入:darker # 输出:<class 'str'> # ...
分类:编程语言   时间:2020-07-11 12:27:49    阅读次数:76
格式化2
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
21830条   上一页 1 ... 42 43 44 45 46 ... 2183 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!