What does Pythonic mean?

On many websites I often see comments that code isn’t Pythonic, or that there is a more Pythonic way to achieve the same goal. What does Pythonic mean in this context? For example, why is while i < someValue: do_something(list[i]) i += 1 not Pythonic while for x in list: doSomething(x) is Pythonic? Answers: Thank … Read more