Skip to content

Commit d402639

Browse files
committed
mouredev#14 - Python
1 parent 51aa4a9 commit d402639

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,7 @@
104104

105105
# Número de la semana del año (lunes como primer día de la semana)
106106
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

Comments
 (0)