2 Matching Annotations
  1. Oct 2017
    1. Dr. Wendy Bui was an NIH postdoctoral fellow in the laboratory of Dr. Andres Buonanno, Chief of Molecular Developmental Neurobiology, NICHD; she has left science for life in a monastery.

      would be interesting to find and talk to her. Left a NIH postdoctoral position for a life in a monastery

  2. Jun 2016
    1. Perhaps it would have been simpler just to count the lowercase-only items, but this gives the wrong answer (why?).

      this is because lowercasing all alphabetic items converts ALL alphabetic items to lowercase which includes items which are uppercase and which are lowercase.

      On the other hand, counting all lowercase-only items only finds items which are lowercase, thus the uppercase items are not counted (which were, in the 1st case). code - (set(word for word in text1 if word.islower()))