Maj fichier

This commit is contained in:
2021-09-08 23:41:31 +02:00
parent 9d3e45160a
commit 177104ccae
2 changed files with 5 additions and 29 deletions

View File

@@ -21,29 +21,6 @@ Consignes:
10. Premier programme informatique
11. Premier ordinateur
```python
import time
def chrono(t):
while t:
mins, secs = divmod(t, 60)
timer = '{:02d}:{:02d}'.format(mins, secs)
print(timer, end="\r")
time.sleep(1)
t -= 1
print('Terminé !!')
t = input("Combien de temps ? : ")
chrono(int(t))
```
## Apollo 11 qui alunit
> ![apollo11](Images/apollo11.jpeg)