Correction exercices les dates en python
Sommaire
- 1- Objectifs
- 2- Exercice 01
- 2.1- Énoncé
- 2.2- Correction
- 3- Exercice 02
- 3.1- Énoncé
- 3.2- Solution
- 4- Exercice 03
- 4.1- Énoncé
- 4.2- Solution
- 5- Exercice 04
- 5.1- Énoncé
- 5.2- Solution
- 6- Exercice 05
- 6.1- Énoncé
- 6.2- Solution
- 7- Exercice 06
- 7.1- Énoncé
- 7.2- Solution
- 8- Exercice 07
- 8.1- Énoncé
- 8.2- Solution
- 8.2.1- Sommaire du cours Python
Correction exercices les dates en python
-
Objectifs
- Etre capable de manipuler les dates en Python
-
Exercice 01
-
Énoncé
- Vous pouvez visualiser l’énoncé de l’exercice
-
Correction
from tkinter import *
from tkinter.ttk import *
from time import strftime
root = Tk()
root.title('Horloge')
def time():
string = strftime('%H:%M:%S %p')
lbl.config(text = string)
lbl.after(1000, time)
lbl = Label(root, font = ('calibri', 40, 'bold'),
foreground = 'black',
borderwidth=20, relief="solid")
lbl.pack(padx=20, pady=20,anchor = 'center')
root.configure(bg='red')
time()
mainloop()