diff --git a/chapter08/8-9.py b/chapter08/8-9.py index dc1954e..827287b 100644 --- a/chapter08/8-9.py +++ b/chapter08/8-9.py @@ -1,6 +1,6 @@ def show_magicians(names): for name in names: - print(name) + print(name.title()) magicians = ['znn','david','amy'] -show_magicians(magicians) \ No newline at end of file +show_magicians(magicians)