python 示例_Python TextCalendar类别| pryear()方法与示例

python 示例

Python TextCalendar.pryear()方法 (Python TextCalendar.pryear() Method)

pryear() method is an inbuilt method of the TextCalendar class of calendar module in Python. It works on text calendars. It uses an instance of TextCalendar class and prints the calendar for an entire year Also, there is no need for a "print" operation to execute this.

pryear()方法是Python中日历模块的TextCalendar类的内置方法。 它适用于文本日历。 它使用TextCalendar类的实例并打印整年的日历。此外,不需要执行“打印”操作即可执行此操作。

Module:

模块:

    import calendar

Class:

类:

    from calendar import TextCalendar

Syntax:

句法:

    pryear(year, w=2, l=1, c=6, m=3)

Parameter(s):

参数:

  • year: It is a required parameter, which specifies the year of the calendar.

    year :这是必填参数,用于指定日历的年份。

  • w: It is an optional parameter, which specifies the width of the date column; default value = 2.

    w :这是一个可选参数,用于指定日期列的宽度; 默认值= 2。

  • l: It is an optional parameter, which represents the number of lines one week would use in the resulting string; default value = 1.

    l :这是一个可选参数,代表一周中将在结果字符串中使用的行数; 默认值= 1。

  • c: It is an optional parameter, which specifies the number of spaces between month columns; default value = 6.

    c :这是一个可选参数,用于指定月份列之间的空格数; 默认值= 6

  • m: It is an optional parameter, which represents the number of column of months in a row in the calendar; default value = 3.

    m :这是一个可选参数,代表日历中一行中月份的列数; 默认值= 3。

Return value:

返回值:

The return type of this method is <class 'NoneType'>, it prints an m-column calendar for an entire year.

此方法的返回类型为<class'NoneType'> ,它将打印整个一年的m列日历。

Example:

例:

# Python program to illustrate the 
# use of pryear() method
# import class
import calendar
# creating a TextCalendar instance
cal = calendar.TextCalendar()
year = 2019
print("2019 calendar with default values w=2, l=1, c=6, m=3")
cal.pryear(year)
print()
# Setting c =3, l=2,w=3
cal = calendar.TextCalendar()
year = 1919
print("1919 calendar with w=3, l=2, c=3")
# Parameters missing have default values
cal.pryear(year, 3, 2, 3)
print()
# Setting m=2
# Number of months in a row will be 2
cal = calendar.TextCalendar()
year = 1999
print("1999 calendar with number of month columns in a row=2")
cal.pryear(year, m=2)
print()

Output

输出量

2019 calendar with default values w=2, l=1, c=6, m=3
2019
January                   February                   March
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
1  2  3  4  5  6                   1  2  3                   1  2  3
7  8  9 10 11 12 13       4  5  6  7  8  9 10       4  5  6  7  8  9 10
14 15 16 17 18 19 20      11 12 13 14 15 16 17      11 12 13 14 15 16 17
21 22 23 24 25 26 27      18 19 20 21 22 23 24      18 19 20 21 22 23 24
28 29 30 31               25 26 27 28               25 26 27 28 29 30 31
April                      May                       June
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
1  2  3  4  5  6  7             1  2  3  4  5                      1  2
8  9 10 11 12 13 14       6  7  8  9 10 11 12       3  4  5  6  7  8  9
15 16 17 18 19 20 21      13 14 15 16 17 18 19      10 11 12 13 14 15 16
22 23 24 25 26 27 28      20 21 22 23 24 25 26      17 18 19 20 21 22 23
29 30                     27 28 29 30 31            24 25 26 27 28 29 30
July                     August                  September
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
1  2  3  4  5  6  7                1  2  3  4                         1
8  9 10 11 12 13 14       5  6  7  8  9 10 11       2  3  4  5  6  7  8
15 16 17 18 19 20 21      12 13 14 15 16 17 18       9 10 11 12 13 14 15
22 23 24 25 26 27 28      19 20 21 22 23 24 25      16 17 18 19 20 21 22
29 30 31                  26 27 28 29 30 31         23 24 25 26 27 28 29
30
October                   November                  December
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
1  2  3  4  5  6                   1  2  3                         1
7  8  9 10 11 12 13       4  5  6  7  8  9 10       2  3  4  5  6  7  8
14 15 16 17 18 19 20      11 12 13 14 15 16 17       9 10 11 12 13 14 15
21 22 23 24 25 26 27      18 19 20 21 22 23 24      16 17 18 19 20 21 22
28 29 30 31               25 26 27 28 29 30         23 24 25 26 27 28 29
30 31
1919 calendar with w=3, l=2, c=3
1919
January                       February                       March
Mon Tue Wed Thu Fri Sat Sun   Mon Tue Wed Thu Fri Sat Sun   Mon Tue Wed Thu Fri Sat Sun
1   2   3   4   5                         1   2                         1   2
6   7   8   9  10  11  12     3   4   5   6   7   8   9     3   4   5   6   7   8   9
13  14  15  16  17  18  19    10  11  12  13  14  15  16    10  11  12  13  14  15  16
20  21  22  23  24  25  26    17  18  19  20  21  22  23    17  18  19  20  21  22  23
27  28  29  30  31            24  25  26  27  28            24  25  26  27  28  29  30
31
April                          May                           June
Mon Tue Wed Thu Fri Sat Sun   Mon Tue Wed Thu Fri Sat Sun   Mon Tue Wed Thu Fri Sat Sun
1   2   3   4   5   6                 1   2   3   4                             1
7   8   9  10  11  12  13     5   6   7   8   9  10  11     2   3   4   5   6   7   8
14  15  16  17  18  19  20    12  13  14  15  16  17  18     9  10  11  12  13  14  15
21  22  23  24  25  26  27    19  20  21  22  23  24  25    16  17  18  19  20  21  22
28  29  30                    26  27  28  29  30  31        23  24  25  26  27  28  29
30
July                         August                      September
Mon Tue Wed Thu Fri Sat Sun   Mon Tue Wed Thu Fri Sat Sun   Mon Tue Wed Thu Fri Sat Sun
1   2   3   4   5   6                     1   2   3     1   2   3   4   5   6   7
7   8   9  10  11  12  13     4   5   6   7   8   9  10     8   9  10  11  12  13  14
14  15  16  17  18  19  20    11  12  13  14  15  16  17    15  16  17  18  19  20  21
21  22  23  24  25  26  27    18  19  20  21  22  23  24    22  23  24  25  26  27  28
28  29  30  31                25  26  27  28  29  30  31    29  30
October                       November                      December
Mon Tue Wed Thu Fri Sat Sun   Mon Tue Wed Thu Fri Sat Sun   Mon Tue Wed Thu Fri Sat Sun
1   2   3   4   5                         1   2     1   2   3   4   5   6   7
6   7   8   9  10  11  12     3   4   5   6   7   8   9     8   9  10  11  12  13  14
13  14  15  16  17  18  19    10  11  12  13  14  15  16    15  16  17  18  19  20  21
20  21  22  23  24  25  26    17  18  19  20  21  22  23    22  23  24  25  26  27  28
27  28  29  30  31            24  25  26  27  28  29  30    29  30  31
1999 calendar with number of month columns in a row=2
1999
January                   February
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
1  2  3       1  2  3  4  5  6  7
4  5  6  7  8  9 10       8  9 10 11 12 13 14
11 12 13 14 15 16 17      15 16 17 18 19 20 21
18 19 20 21 22 23 24      22 23 24 25 26 27 28
25 26 27 28 29 30 31
March                     April
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
1  2  3  4  5  6  7                1  2  3  4
8  9 10 11 12 13 14       5  6  7  8  9 10 11
15 16 17 18 19 20 21      12 13 14 15 16 17 18
22 23 24 25 26 27 28      19 20 21 22 23 24 25
29 30 31                  26 27 28 29 30
May                       June
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
1  2          1  2  3  4  5  6
3  4  5  6  7  8  9       7  8  9 10 11 12 13
10 11 12 13 14 15 16      14 15 16 17 18 19 20
17 18 19 20 21 22 23      21 22 23 24 25 26 27
24 25 26 27 28 29 30      28 29 30
31
July                     August
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
1  2  3  4                         1
5  6  7  8  9 10 11       2  3  4  5  6  7  8
12 13 14 15 16 17 18       9 10 11 12 13 14 15
19 20 21 22 23 24 25      16 17 18 19 20 21 22
26 27 28 29 30 31         23 24 25 26 27 28 29
30 31
September                  October
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
1  2  3  4  5                   1  2  3
6  7  8  9 10 11 12       4  5  6  7  8  9 10
13 14 15 16 17 18 19      11 12 13 14 15 16 17
20 21 22 23 24 25 26      18 19 20 21 22 23 24
27 28 29 30               25 26 27 28 29 30 31
November                  December
Mo Tu We Th Fr Sa Su      Mo Tu We Th Fr Sa Su
1  2  3  4  5  6  7             1  2  3  4  5
8  9 10 11 12 13 14       6  7  8  9 10 11 12
15 16 17 18 19 20 21      13 14 15 16 17 18 19
22 23 24 25 26 27 28      20 21 22 23 24 25 26
29 30                     27 28 29 30 31

翻译自: https://www.includehelp.com/python/textcalendar-pryear-method-with-example.aspx

python 示例

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541930.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Spring实战——通过Java代码装配bean

上篇说的是无需半行xml配置完成bean的自动化注入。这篇仍然不要任何xml配置&#xff0c;通过Java代码也能达到同样的效果。 这么说&#xff0c;是要把上篇的料拿出来再煮一遍&#xff1f; 当然不是&#xff0c;上篇我们几乎都在用注解的方式如ComponentScan Component等就完成了…

java 谓词_java8-谓词(predicate)

传递代码我们首先看一个例子&#xff0c;假设你有一个 Apple 类&#xff0c;它有一个getColor方法&#xff0c;还有一个变量inventory保存着一个Apples的列表。你可能想要选出所有的绿苹果&#xff0c;并返回一个列表。通常我们用筛选(filter)一词来表达这个概念。在 Java 8之前…

getlong_Java LocalDateTime类| 带示例的getLong()方法

getlongLocalDateTime类的getLong()方法 (LocalDateTime Class getLong() method) getLong() method is available in java.time package. getLong()方法在java.time包中可用。 getLong() method is used to get the value as long for the given temporal field from this dat…

java.io和util的区别_Java NIO与IO的区别和比较

Java NIO与IO的区别和比较导读J2SE1.4以上版本中发布了全新的I/O类库。本文将通过一些实例来简单介绍NIO库提供的一些新特性&#xff1a;非阻塞I/O&#xff0c;字符转换&#xff0c;缓冲以及通道。一. 介绍NIONIO包(java.nio.*)引入了四个关键的抽象数据类型&#xff0c;它们共…

Java LocalDate类| isSupported()方法与示例

LocalDate类isSupported()方法 (LocalDate Class isSupported() method) Syntax: 句法&#xff1a; public boolean isSupported (TemporalField t_field);public boolean isSupported (TemporalUnit t_unit);isSupported() method is available in java.time package. isSupp…

区块链+税务的思考

2016年&#xff0c;区块链技术火了&#xff01;各大金融公司、互联网巨头都竞相参加到区块链技术的研究中。我们公司的业务是税务的信息化领域&#xff0c;也希望通过区块链技术的应用&#xff0c;来提升为财税领域的服务。 区块链技术优缺点总结 下图是对区块链技术的一些特点…

java hasset 顺序_java集合排序问题

List: 元素是有序的&#xff0c;元素可以重复&#xff0c;因为该集合体系有索引(脚标)常用的子类对象&#xff1a;1————ArrayList 底层的数据结构是使用的数组结构特点&#xff1a;查询速度快&#xff0c;但是增删比较慢2————LinkedList底层的数据结构使用的是链表结构…

如何使用JavaScript删除CSS属性?

In this article, well see how we can remove a CSS property from a certain element using JavaScript? We can remove only those properties that we assign ourselves and the pre-default ones cannot be removed by this method. 在本文中&#xff0c;我们将看到如何使…

Django 缓存系统

Django 是动态网站&#xff0c;一般来说需要实时地生成访问的网页&#xff0c;展示给访问者&#xff0c;这样&#xff0c;内容可以随时变化&#xff0c;但是从数据库读多次把所需要的数据取出来&#xff0c;要比从内存或者硬盘等一次读出来 付出的成本大很多。 缓存系统工作原理…

java web截屏_java_WebDriver中实现对特定的Web区域截图方法,用过 WebDriver 的同学都知道,We - phpStudy...

WebDriver中实现对特定的Web区域截图方法用过 WebDriver 的同学都知道&#xff0c;WebDriver 可以对浏览器中的页面进行截图。例如&#xff1a;public byte[] takeScreenshot() throws IOException {TakesScreenshot takesScreenshot (TakesScreenshot) driver;return takesSc…

c语言 关键字const_C ++ const关键字| 查找输出程序| 套装1

c语言 关键字constProgram 1: 程序1&#xff1a; #include <iostream>using namespace std;void fun(int& A) const{A 10;}int main(){int X 0;fun(X);cout << X;return 0;}Output: 输出&#xff1a; [Error] non-member function void fun(int) cannot ha…

【喜报】JEEWX荣获“2016 年度码云新增热门开源软件排行榜”第一名!

为什么80%的码农都做不了架构师&#xff1f;>>> 2016 年度码云新增项目排行榜 TOP 50 正式出炉&#xff01;根据 2016 年在码云上新增开源项目的 Watch、Star、Fork 数量以及其他角度的统计&#xff0c;JEEWX捷微管家荣获“2016 年度码云新增热门开源软件排行榜”第…

java 二叉树特点_疯狂java笔记之树和二叉树

树的概述树是一种非常常用的数据结构&#xff0c;树与前面介绍的线性表&#xff0c;栈&#xff0c;队列等线性结构不同&#xff0c;树是一种非线性结构1.树的定义和基本术语计算机世界里的树&#xff0c;是从自然界中实际的树抽象而来的&#xff0c;它指的是N个有父子关系的节点…

编辑距离 dp_使用动态编程(DP)编辑距离

编辑距离 dpProblem: You are given two strings s1 and s2 of length M and N respectively. You can perform following operations on the string. 问题&#xff1a;给您两个长度分别为M和N的字符串s1和s2 。 您可以对字符串执行以下操作。 Insert a character at any posi…

tomcat +apache 配置集群

2019独角兽企业重金招聘Python工程师标准>>> APACHE2.2.25TOMCAT6.0.37配置负载均衡 目标: 使用 apache 和 tomcat 配置一个可以应用的 web 网站&#xff0c;要达到以下要求&#xff1a; 1. Apache 做为 HttpServer &#xff0c;后面连接多个 tomcat 应用实例&…

java双缓存机制_详解JVM类加载机制及类缓存问题的处理方法

前言大家应该都知道&#xff0c;当一个Java项目启动的时候&#xff0c;JVM会找到main方法&#xff0c;根据对象之间的调用来对class文件和所引用的jar包中的class文件进行加载(其步骤分为加载、验证、准备、解析、初始化、使用和卸载)&#xff0c;方法区中开辟内存来存储类的运…

oracle中dbms_并发和由于DBMS中的并发导致的问题

oracle中dbms并发 (Concurrency) The ability of a database system which handles simultaneously or a number of transactions by interleaving parts of the actions or the overlapping this is called concurrency of the system. 数据库系统通过交织部分操作或重叠操作来…

什么是mvc?

什么是MVCMVC 是一种设计模式&#xff0c;它将应用划分为3 个部分&#xff1a;数据&#xff08;模型&#xff09;、展现层&#xff08;视图&#xff09;和用户交互层&#xff08;控制器&#xff09;。换句话说&#xff0c;一个事件的发生是这样的过程&#xff1a;1&#xff0e;…

mysql的安装和基本命令_MySQL安装以及简单命令用法

MYSQL:关系型数据库存储引擎:负责将逻辑层的概念转化为物理层机制&#xff0c;在物理层完成物理机制。支持事务&#xff1a;transaction必须满足的条件&#xff1a;ACID(一致性,持久性,原子性,隔离性)锁&#xff1a;并发访问随机访问&#xff1a;数据在磁盘上是随机存储的安装&…