Indices and Slices in Python
In Python, indices and slicing is used very commonly for retrieving an individual item or range of items from list, string, tuples. In this post, I'll...
February 3, 2018 1 min read
In Python, indices and slicing is used very commonly for retrieving an individual item or range of items from list, string, tuples. In this post, I'll...
February 3, 2018 1 min read
Are you owning a domain name and want to send and recieve email using your domain for free? Yes, free, I just came accross a third party website Mailg...
November 22, 2017 3 min read
An Iterable is an object in Python which can return one of its member at a time, examples include list, str, tuple, dict, file etc. Iterables can be u...
November 15, 2017 3 min read
In this post, we'll walk over the Singly Linked List and its implementation using C language. In a singly linked list, each node in the list stores tw...
November 9, 2017 2 min read
In C/C++, Char is basically an array of characters. So, if we have something like below :- char c = "hello"; It means, we have an array "c" w...
November 1, 2017 2 min read