Módulo de calendario de Python | método setfirstweekday()

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.setfirstweekday(weekday)es una función proporcionada en el módulo de calendario para calendarios de texto simple.

setfirstweekday()El método establece el día de la semana (0 es lunes, 6 es domingo) para comenzar cada semana. Los valores LUNES, MARTES, MIÉRCOLES, JUEVES, VIERNES, SÁBADO y DOMINGO se proporcionan por comodidad.
Por ejemplo, para establecer el primer día de la semana en domingo.

Syntax: setfirstweekday()
Parameter: no parameter
Returns: None

Código #1:

# Python program to explain working of setfirstweekday() method
  
# importing calendar module
import calendar
  
# calling setfirstweekday() function
val = calendar.setfirstweekday(calendar.SUNDAY)
  
# returns None
print(val)

Producción:

None

 
Código #2: Explicando el funcionamiento del setfirstweekday()método con el prmonth()método

# Python code to demonstrate the working of 
# setfirstweekday() with 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 ("\r") 
  
# using firstweekday() to check the changed day 
print ("The new week day number is : ", end ="") 
print (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
 
The new week day number is : 4

Publicación traducida automáticamente

Artículo escrito por Shivam_k y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *