cadenzasong
cadenzasong
Should the last example regarding move pointers be explicitly marked "Example, bad" instead of just "Example"?
"The first five locations are already in the database and so they are skipped." => "The first six locations are already in the database and so they are skipped."
" 
Please correct me if I'm missing something, but I think some code examples in chapter 14 is not accurate. e.g. in party5.py the "x = 0" and "name = """...
I assume the data should mimic the one in xml2.py, so the suggestion is for the 2nd item, make the name tag "Brent"
Under: Multiple assignment with dictionaries Can drop the "list" in: for key, val in list(d.items()): print(val, key) suggested form: for key, val in d.items(): print(val, key)
Line 567-570: For most systems, there are applications to convert from one format to another. You can find them (and read more about this issue) at [wikipedia.org/wiki/Newline](wikipedia.org/wiki/Newline). Or, of course,...
C4 quiz
4.16 About how long does it take for a packet to cross the Pacific Ocean via an undersea fiber optic cable? 0.0025 Seconds 0.025 Seconds 0.250 Seconds 2.5 Seconds I...
Here, the first ten packets of the message have been sent and acknowledged by the destination computer (‘a’). "first ten packets" -> "first eight packets" The Transport layer on the...