Skip to content

Commit

Permalink
fix ch03.ipynb example mixing up first/last names (wesm#133)
Browse files Browse the repository at this point in the history
Curt is the first name, Schilling the last
  • Loading branch information
hugetim authored Feb 28, 2021
1 parent e5ce8f7 commit f801527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch03.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@
"outputs": [],
"source": [
"pitchers = [('Nolan', 'Ryan'), ('Roger', 'Clemens'),\n",
" ('Schilling', 'Curt')]\n",
" ('Curt', 'Schilling')]\n",
"first_names, last_names = zip(*pitchers)\n",
"first_names\n",
"last_names"
Expand Down

0 comments on commit f801527

Please sign in to comment.