El módulo de calendario permite generar calendarios como un programa y proporciona funciones útiles adicionales relacionadas con el calendario. Las funciones y clases definidas en el módulo Calendario utilizan un calendario idealizado, el actual calendario gregoriano extendido indefinidamente en ambas direcciones.
En Python, calendar.firstweekday()
es una función proporcionada en el módulo de calendario para calendarios de texto simple.
firstweekday()
El método se utiliza para obtener la configuración actual del día de la semana para comenzar cada semana.
Syntax: firstweekday() Parameter: no parameter Returns: None
Código #1:
# Python program to explain working of firstweekday() method # importing calendar module import calendar # default firstweekday print("Default First weekday is - ", calendar.firstweekday()) # setting 2nd day as firstweekday calendar.setfirstweekday(2) # print firstweekday print("First weekday after modification is - ", calendar.firstweekday())
Producción:
Default First weekday is - 6 First weekday after modification is - 2
Código #2: Explicación del funcionamiento del método firstweekday() con el método prmonth()
# Python code to demonstrate the working of # firstweekday() with help of prmonth() method # importing calendar module for calendar operations import calendar # using prmonth() to print calendar of 1997 print ("The 4th month of 1997 is : ") calendar.prmonth(1997, 4, 2, 1) # using setfirstweekday() to set first week day number calendar.setfirstweekday(4) print("First weekday after modification is - ", calendar.firstweekday())
Producción:
The 4th month of 1997 is : April 1997 Mo Tu We Th Fr Sa Su 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 First weekday after modification is - 4