forked from quentin/quentin.dufour.io
fix bug in python 02
This commit is contained in:
parent
e8eb0e95a3
commit
a5b40b3817
1 changed files with 2 additions and 0 deletions
|
@ -105,6 +105,7 @@ while True:
|
||||||
livre['titre'] = input("titre > ")
|
livre['titre'] = input("titre > ")
|
||||||
livre['auteur'] = input("auteur > ")
|
livre['auteur'] = input("auteur > ")
|
||||||
livre['edition'] = input("edition > ")
|
livre['edition'] = input("edition > ")
|
||||||
|
bibliotheque.append(livre)
|
||||||
```
|
```
|
||||||
|
|
||||||
On devrait alors modifier les parties conversions des fonctions charger et sauvegarder.
|
On devrait alors modifier les parties conversions des fonctions charger et sauvegarder.
|
||||||
|
@ -173,6 +174,7 @@ while True:
|
||||||
livre['titre'] = input("titre > ")
|
livre['titre'] = input("titre > ")
|
||||||
livre['auteur'] = input("auteur > ")
|
livre['auteur'] = input("auteur > ")
|
||||||
livre['edition'] = input("edition > ")
|
livre['edition'] = input("edition > ")
|
||||||
|
bibliotheque.append(livre)
|
||||||
sauvegarder(bibliotheque)
|
sauvegarder(bibliotheque)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue