We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105ffb3 commit 9b7b235Copy full SHA for 9b7b235
chapter08/8-7.py
@@ -2,7 +2,7 @@ def make_album(artist, title):
2
album_dict = {
3
'artist': artist.title(),
4
'title': title.title(),
5
- }
+ }
6
return album_dict
7
8
album = make_album('metallica', 'ride the lightning')
@@ -12,4 +12,4 @@ def make_album(artist, title):
12
print(album)
13
14
album = make_album('willie nelson', 'red-headed stranger')
15
-print(album)
+print(album)
0 commit comments