Advertisement
Sergio_Istea

fecha.py

Apr 24th, 2023
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3.  
  4. # Importar funcion 'datetime' del modulo 'datetime
  5.  
  6. from datetime import datetime
  7.  
  8. fecha = datetime.now()
  9.  
  10. print(fecha)
  11.  
  12. # se aplica el método 'strftime()'
  13.  
  14. fecha_formateada = fecha.strftime("%Y-%m-%d")
  15.  
  16. print(fecha_formateada)
  17.  
  18. #print(fecha)
  19. #print("Fecha formateada:", fecha_formateada)
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement