88 Matching Annotations
  1. Last 7 days
  2. Nov 2025
    1. and the Survived Column. Remember, if a person survived, they have a 1; if they did not, they have a 0. We can use the sum to know how many male vs. female survivors there were.

      somewhat confusing given that the Survived column is not even included in the example

    1. the internet links a specific and unique address that can be used as a way to connect to a server without having to type out an IP address

      i.e. URLs are used instead of IP addresses

    1. We can likewise do the same in reverse by grabbing all indices up to the first index. In other words, the item in index 0.

      Unclear: "all indices up to the first index" can only refer to the single index 0. This is nonsensical phrasing. - If it is meant that we can grab all indices from the beginning of a list up to certain index then the example should be e.g. print (first_list[:2]) and the description should be changed accordingly. - If it is meant that we can grab indexes from behind (from right to left) up to the first index (being 0), the example/syntax given is wrong. Then it should be print (first_list[::-1]. This seems more likely given that the description would make sense as it stands and the mistake would just concern two signs in the example. But the concept of slice notation should be better introduced then.

  3. Oct 2025