码迷,mamicode.com
首页 >  
搜索关键字:pyton continue    ( 5309个结果
python小白学习过程
2020-01-29 19:51:07 第一周学习要点 1、课程介绍 老师本人在多个很牛逼的公司任职经历,说明平台和经历对一个人很重要。 python应用越来越广泛,学成前景好。 授课目标:一周一天,7个月教完,能开发、自动化、想干吗就干吗。可以开发自动化运维平台、监控、CMDB、Docker \O ...
分类:编程语言   时间:2020-01-29 23:31:52    阅读次数:97
P3386 【模板】二分图匹配
#include <bits/stdc++.h> using namespace std; const int maxn = 1010; int n,m,e; int vis[maxn][maxn]; int ask[maxn]; int cnt, ans; int matched[maxn]; b ...
分类:其他好文   时间:2020-01-29 18:19:17    阅读次数:72
第5课
a= ["23", 34, 56,"print", None] b = int(a[0]) + a[2] print(b) import random a= ["print","input", "while", "if", "else", "break","continue"] while True ...
分类:其他好文   时间:2020-01-29 14:36:38    阅读次数:57
PAT Advanced 1050 String Subtraction (20) [Hash散列]
题目 Given two strings S1 and S2, S = S1 – S2 is defined to be the remaining string afer taking all the characters in S2 from S1. Your task is simply to ...
分类:其他好文   时间:2020-01-28 21:02:59    阅读次数:65
Codeforces Hello 2020 选讲
http://codeforces.com/contest/1284/problem/D 把区间对的第二维放入以第一维为下标的数轴中(如1 2 3 4,就把区间[3,4]放入位置1和位置2),如此同个位置的所有区间必须两两相交,即检验第一维相交?第二维相交。同理检验第二维相交?第一维相交。“放入”可 ...
分类:其他好文   时间:2020-01-28 12:26:09    阅读次数:53
Subway POJ - 2502 spfa
#include<cstdio> #include<cmath> #include<cstring> #include<cstring> #include<iostream> #include<queue> using namespace std; const int N=205; const do ...
分类:其他好文   时间:2020-01-27 15:42:59    阅读次数:49
循环(while,break,continue),转义字符
01. 程序的三大流程 在程序开发中,一共有三种流程方式: 顺序 —— 从上向下 ,顺序执行代码 分支 —— 根据条件判断,决定执行代码的 分支 循环 —— 让 特定代码 重复 执行 02. 循环基本使用 循环的作用就是让 指定的代码 重复的执行 循环最常用的应用场景就是 让执行的代码 按照 指定的 ...
分类:其他好文   时间:2020-01-27 09:46:36    阅读次数:84
每天AC系列(四):四数之和
每天AC系列(四):四数之和
分类:其他好文   时间:2020-01-26 23:56:35    阅读次数:108
测试continue在switch-case是否起作用
for(i=0,j=0; i<4; i++) { switch(i) { case 0: j++; break; case 1: continue; j++; break; default: break; } printf("j=d%\n",j); } 如果continue不起作用,应该打印四个结果 ...
分类:其他好文   时间:2020-01-25 14:16:28    阅读次数:82
CF4
A "A" 奇数或者$2$是$NO$ ...
分类:其他好文   时间:2020-01-24 17:27:47    阅读次数:93
5309条   上一页 1 ... 54 55 56 57 58 ... 531 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!