# -*- coding: utf-8 -*-
# Savoir toutes les informations date et heure du jour
# v.1

print("Voici les informations du jour !")
print("--------------------------------")

import time
import datetime

print()
print("Time in seconds since the epoch: %s" %time.time())
print()
print("Current date and time..........:" , datetime.datetime.now())
print()
print("Or like this...................:" ,datetime.datetime.now().strftime("%y-%m-%d   %H:%M"))
print()
print()
print()
print("Current year...................:", datetime.date.today().strftime("%Y"))
print()
print("Month of year..................:", datetime.date.today().strftime("%B"))
print()
print("Week number of the year........:", datetime.date.today().strftime("%W"))
print()
print("Weekday of the week............:", datetime.date.today().strftime("%w"))
print()
print("Day of year....................:", datetime.date.today().strftime("%j"))
print()
print("Day of the month...............:", datetime.date.today().strftime("%d"))
print()
print("Day of week....................:", datetime.date.today().strftime("%A"))

print()
print("----------------------")
bye = (input ("Entrer pour Sortir...!"))