What is idiomatic code?
Idiomatic means following the conventions of the language. You want to find the easiest and most common ways of accomplishing a task rather than porting your knowledge from a different language. non-idiomatic python using a loop with append: mylist = [1, 2, 3, 4] newlist = [] for i in mylist: newlist.append(i * 2) idiomatic … Read more