We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b0145b commit 0da2119Copy full SHA for 0da2119
calendario.py
@@ -0,0 +1,8 @@
1
+from calendar import *
2
+year = int(input("Informe o Ano: "))
3
+print(calendar(year, 2, 1, 8, 3))
4
+
5
+# 2 = 2 caracteres da semana (Mo, Tu, etc)
6
+# 1 = 1 linha por semana
7
+# 8 = 8 linhas por mês
8
+# 3 = 3 colunas com exibição do calendário
0 commit comments