Articles

Advanced python: comprehension

A

In this article, we’ll learn about a Python language construct known as comprehensions for creating a new sequence based on existing one but its syntax is more human-readable than lambda functions. These can be applied to lists, sets, and dictionaries.  REVIEW Lambda and map Lambda is an anonymous function (function without name). Let have a quick look at the following example for...

Advanced python: collections

A

In part 2, we introduced advanced python knowledge with built-in functions and other useful tools for sequence iteration, data transformation. Advanced python part 3 will continue with collections to manipulate our data. Named tuple Suppose we want to define a data structure to represent a geometric point on a typical x and y-axis. We could easily do this by defining a regular...

Advanced python part 2

A

In part 1, we introduced advanced string, bytes manipulation in Python. This article covers some advanced python knowledge with built-in functions and other useful tools for sequence iteration, data transformation. Useful built-in functions Use any() to return true if any of the sequence values are trueUse all() to return true only if all values are trueQuickly find the minimum/maximum value in a...

PetaMinds focuses on developing the coolest topics in data science, A.I, and programming, and make them so digestible for everyone to learn and create amazing applications in a short time.

Categories