We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51aa4a9 commit d402639Copy full SHA for d402639
.gitignore
@@ -0,0 +1,16 @@
1
+.vscode/
2
+*.txt
3
+*.xml
4
+*.iml
5
+*.json
6
+*.csv
7
+*.zip
8
+!stats.json
9
+.DS_Store
10
+.idea/
11
+pubspec.yaml
12
+pubspec.lock
13
+.venv
14
+*.class
15
+*.gradle
16
+.vs/
Roadmap/14 - FECHAS/python/Complex303.py
@@ -104,3 +104,7 @@
104
105
# Número de la semana del año (lunes como primer día de la semana)
106
print(birth_date.strftime("%W")) # Ej: 07
107
+
108
109
+#strftime (string format time) convierte un objeto datetime a un string con el formato que tú le indiques.
110
+#strptime (string parse time) convierte un string con una fecha y hora a un objeto datetime, usando el formato que tú le indiques
0 commit comments