Re: How to become more motivated to learn Python

2016-05-04 Thread mviljamaa
I tend to not have the patience to go through programming tutorials, because I think they're boring. I sometimes use them as reference to see or recall how something is done, but I don't step through them in order to learn a language. Rather, I write programs to learn programming and languages

How to union nested Sets / A single set from nested sets?

2016-01-06 Thread mviljamaa
I'm forming sets by set.adding to sets and this leads to sets such as: Set([ImmutableSet(['a', ImmutableSet(['a'])]), ImmutableSet(['b', 'c'])]) Is there way union these to a single set, i.e. get Set(['a', 'b', 'c']) ? -- https://mail.python.org/mailman/listinfo/python-list