From a5b40b3817e12d38ac0062367bda10eee363cd74 Mon Sep 17 00:00:00 2001 From: Quentin Dufour Date: Sun, 22 Jan 2017 22:35:48 +0100 Subject: [PATCH] fix bug in python 02 --- _posts/2017-01-22-json.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/_posts/2017-01-22-json.md b/_posts/2017-01-22-json.md index a442afe..ac3e9e8 100644 --- a/_posts/2017-01-22-json.md +++ b/_posts/2017-01-22-json.md @@ -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) ```