012 - Python ejercicios w3 - Print the calendar of a given month and year

2 years ago
2

012 - Python ejercicios w3 - Print the calendar of a given month and year

En este ejercicio usamos el modulo "calendar" para imprimir un calendario en la consola.

Con la función "calendar.month(año, mes)"

Se imprime un calendario en varias lineas.

Se puede determinar que tan separados se imprimen las lineas y caracteres

Con la función "calendar.month(año, mes, w=n, l=n)"

Link de mi Jupyter Notebook en Github:
https://github.com/javier-cantu/LearningPython/blob/master/w3resource_python_ex/012%20Print%20the%20calendar%20of%20a%20given%20month%20and%20year.ipynb

--------------------------

Link del ejercicio:
https://www.w3resource.com/python-exercises/python-basic-exercise-12.php

Documentación de Python sobre Calendar:
https://docs.python.org/3/library/calendar.html

--------------------------

Jupyter ShortCuts
Insert:
a = Incert Cell Above
b = Incert Cell Below
Cell:
Shift + Enter = Run Cells and Select Below
d,d = Delete cell
Cell Type:
y = Code
m = Markdown
Kernel:
Restart = 0,0

Loading comments...