Python · Generators & Iterators
What does this print? ``` from itertools import groupby g = list(groupby('AAB')) print([list(grp) for k, grp in g]) ```
Answer locked. Get the free KnowCard app to reveal it — plus spaced-repetition review so it actually sticks.
