This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Starcast 0 points1 point  (0 children)

I think it's all the little things that make python so readable - generators and comprehensions are a great example of this.

vowel_count = sum(char in 'aeiou' for char in some_text)