fix bug in python 02

This commit is contained in:
Quentin Dufour 2017-01-22 22:35:48 +01:00
parent e8eb0e95a3
commit a5b40b3817
1 changed files with 2 additions and 0 deletions

View File

@ -105,6 +105,7 @@ while True:
livre['titre'] = input("titre > ")
livre['auteur'] = input("auteur > ")
livre['edition'] = input("edition > ")
bibliotheque.append(livre)
```
On devrait alors modifier les parties conversions des fonctions charger et sauvegarder.
@ -173,6 +174,7 @@ while True:
livre['titre'] = input("titre > ")
livre['auteur'] = input("auteur > ")
livre['edition'] = input("edition > ")
bibliotheque.append(livre)
sauvegarder(bibliotheque)
```