
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Rohan Singh has Published 170 Articles

Rohan Singh
2K+ Views
In Python, similar keys in the dictionary can be grouped using various methods in Python as using defaultdict, using a dictionary of lists, using the itertools module, and the groupby function. During data analysis sometimes we may need to group similar keys together in a dictionary based on certain criteria. ... Read More

Rohan Singh
275 Views
In data analysis and processing, it is necessary to group similar elements together for better organization and analysis of data. Python provides several methods to group elements into a dictionary value list efficiently in Python, using for loop, using defaultdict, and using itertools.groupby methods. In this article, we will explore ... Read More

Rohan Singh
645 Views
In Python, we can group list of tuples to a dictionary using different methods like using a for loop and conditional statements, using the defaultdict class from the collections module, and using the groupby() function from the itertools module. In this article we will explore all these methods and implement ... Read More

Rohan Singh
1K+ Views
Instagram is a popular social media platform that allows users to connect and share content with their followers. As a developer, there might be a need to automate certain tasks on Instagram, such as extracting follower data. Instagram's follower popup only loads a limited number of followers at a time, ... Read More

Rohan Singh
816 Views
In Python, the grouping of elements in a tuple list based on the values of their second elements can be done using various methods like using a dictionary or using itertools.groupby() method, and using defaultdict from collections. Group first elements by second elements in the Tuple list means the tuple ... Read More

Rohan Singh
128 Views
Group concatenate till K means concatenating elements within a group or sequence until a specific condition is met. In Python we can group concatenate till K using various methods like using a loop and accumulator, Using itertools.groupby(), and using regular expressions. In this article, we will use and explore all ... Read More

Rohan Singh
414 Views
Golomb encoding is a data compression technique used to encode non−negative integers with a specific distribution. It was introduced by Solomon W. Golomb in 1966 and has been widely used in various applications, including video and image compression, information retrieval, and data storage. In this article, we will explore Golomb ... Read More

Rohan Singh
4K+ Views
In Python, we can get the object with a max attribute value in a list of objects using the max() function with a lambda function, using the operator module, using a custom comparison function, etc. In this article, we will explore different methods that can be used to get the ... Read More

Rohan Singh
12K+ Views
To retrieve the indices of all occurrences of a specific element in a list using Python we can use methods like using for loop, using list comprehension, using enumerate() function, using the index() method in a while loop, etc. In this article, we will explore these different methods and perform ... Read More

Rohan Singh
698 Views
In Python, the slice method allows us to extract specific elements from a sequence, such as strings, lists, or tuples. It provides a concise and flexible way to work with subsequences within a larger sequence. In this article, we will explore how to obtain the sum of the last K ... Read More