pimento[w07]$ python3 checkbook-2.0.py readNames readBalances showMenu What would you like to do: withdraw (w), deposit (d), quit (q) w Whose balance should we change? [0-3]0 withdraw showMenu What would you like to do: withdraw (w), deposit (d), quit (q) d Whose balance should we change? [0-3]4 deposit showMenu What would you like to do: withdraw (w), deposit (d), quit (q) q output balances pimento[w07]$ ls all-averages.py checkbook-2.0-output.txt lol.py skybear.ogv all-grades.txt checkbook-2.0.py names.txt skybear.py average.py checkbook.py output.txt squareText.py average.txt design-checkbook.py shopping.py balances.txt grades.txt shoppingList.txt pimento[w07]$ atom lol.py pimento[w07]$ python3 Python 3.6.6 (default, Sep 12 2018, 18:26:19) [GCC 8.0.1 20180414 (experimental) [trunk revision 259383]] on linux Type "help", "copyright", "credits" or "license" for more information. >>> song = ["title", "artist", 45.0] >>> song ['title', 'artist', 45.0] >>> song1 = ["title2", "artist2", 20.0] >>> song1 ['title2', 'artist2', 20.0] >>> songs = [song, song1] >>> songs [['title', 'artist', 45.0], ['title2', 'artist2', 20.0]] >>> songs[0] ['title', 'artist', 45.0] >>> songs[0][1] 'artist' >>>