diff --git a/strings.html b/strings.html index 71f2140..4fdd03b 100644 --- a/strings.html +++ b/strings.html @@ -268,6 +268,8 @@ experience of years.
  • Finally, Python can turn that list-of-lists into a dictionary simply by passing it to the dict() function. +

    [FIXME - this is the first time we've seen a list comprehension. Add a forward or backward reference once we have a full section explaining them.] +

    The previous example looks a lot like parsing query parameters in a URL, but real-life URL parsing is actually more complicated than this. If you’re dealing with URL query parameters, you’re better off using the urllib.parse.parse_qs() function, which handles some non-obvious edge cases.