简单for循环

1问题:如何定义N年年份

2答: 定义每个变脸=量

3问题;N年年份如何进行判断瑞年或平年

4答:循环判断

解:

引入产生N年年份:range(star,stop,step)

程序:

for year in range(1990,2005)

if:

( i %400 ==0)or (year%4 ==0 and year%100!=0)

print("leapyear: %d"  %year)

else:

print("pingnian:%d" %year)

时间: 2024-10-12 14:00:25

简单for循环的相关文章

python实现简单的循环购物车小功能

python实现简单的循环购物车小功能 # -*- coding: utf-8 -*- __author__ = 'hujianli' shopping = [ ("iphone6s", 5000), ("book python", 81), ("iwach", 3200), ("电视机", 2200) ] def zero(name): if len(name) == 0: print("\033[31;1m您的输

简单图片循环滚动

<marquee style="margin-top:5px;" behavior="alternate" loop="1" onmousemove="stop()" onmouseout="start()"> <img src="Image/0.jpg" width="180px"; height="180px" /> &

利用insertBefore制作简单的循环插空效果【jsDEMO】

[功能说明] 利用insertBefore制作简单的循环插空效果 [HTML代码说明] <ul class="list" id="list"> <li class="in">1</li> <li class="in">2</li> <li class="in">3</li> <li class="in&quo

简单的循环和判断

#include<bits/stdc++.h> #include<windows.h> #include<time.h> #include<stdlib.h> #include<conio.h> using namespace std; //PS:如果你可以用自己的身躯吃掉符号也可以,我没加判断. char box[101][101]; //可以理解为地图 int n;//几号地图 int eexit=1;//这个可以去掉,但懒得去 int ma

简单的循环语句和选择语句

一.[登录密码的判断] 实现这个功能主要用到while循环和if-else判断,实现最多三次输入不正确就退出程序,实现锁定功能就要用到文件处理命令. ①.程序流程图 ②.程序代码图 ③.程序代码: 1 #Write the login interface: 2 #insert username and password. 3 #A welcome message is displayed after the authentication is successful. 4 #Lock the in

c++简单实现循环队列

栈的数据结构是先进后出,而队列的数据结构就是 一个出口一个入口入口只能入队,出口只能出队 实现的代码如下: 1 /* 2 循环静态队列实现 2017年8月5日07:50:58 3 */ 4 #ifndef __QUEUE_H__ 5 #define __QUEUE_H__ 6 #include <Windows.h> 7 class Queue 8 { 9 public: 10 Queue(); //无参构造 11 Queue(DWORD); //有参构造 12 ~Queue(); //析构

简单的循环队列

#include<stdio.h>#include<malloc.h> #define max 10 typedef struct node{int queue[max];int front,rear;}q,*queue;void init(queue p){p->front=-1;p->rear=-1;} int empty(queue p){if(p->front==p->rear){printf("队列为空\n");return 1

bash简单for循环2

写一个脚本:输入三个参数 0,1,2,3之一输入3:计算100以内所有能被3整除的正整数的和:输入2:计算100以内所有所有偶数的和:输入1:计算100以内所有所有奇数的和:输入0:计算100以内所有所有整数的和: 代码 #!/bin/bash # declare -i SUM=0 if [ $1 == 3 ];then   for I in {1..100};do     if [ $[$I%3] -eq 0 ];then       SUM=$[$SUM+$I]     fi   done

简单for循环进行数组排序

import java.io.BufferedReader;import java.io.IOException;import java.io.InputStreamReader;import java.util.Scanner;import java.util.Arrays;public class Triangle{ public static void main(String[] args)throws IOException { String m=new String("");