NNNithya Ninnithyann.hashnode.dev·Sep 19, 2021 · 3 min readUnderstanding Dictionaries in PythonDictionaries are a really essential concept for coding in Python. They are often used in places where you need to store a massive collection of data which is organized in a particular order (post Python 3.6). Dictionaries commonly follow a key-value ...00
NNNithya Ninnithyann.hashnode.dev·Sep 13, 2021 · 2 min readGuide to Understanding Lambda FunctionsLambda functions are some of the most underrated yet extremely easy to use functions in all of Python. They are hard to grasp for a beginner, however, quickly become an indispensable tool in your kit when you get the hang of it. The function is name...00
NNNithya Ninnithyann.hashnode.dev·Sep 9, 2021 · 3 min read5 Methods to use with Python Lists!An important data structure that Python users regularly use in their code, is the list data type. Lists are the equivalent of arrays for Python. Functionally, they are one of the most used data structures. Knowing a few methods could make your code ...00