Resources  
  • What Is the Difference Between a List and a Tuple in Python?Oct 19, 2025. Understand the key differences between Python lists and tuples — including syntax, mutability, speed, and memory efficiency. Learn when to use each with real code examples and insights for interviews.
  • Python - Data Types - Tuple OperationsOct 08, 2025. Explore Python tuples! This guide covers tuple definition, immutability, and practical operations. Learn to create, convert (list to tuple, tuple to list), concatenate, and unpack tuples. Discover methods like count, index, and techniques for handling mixed data types, nested tuples, and removing duplicates. Master tuple manipulation with clear examples and code snippets. Perfect for Python beginners and experienced developers alike!
  • Python List vs Tuple vs Dictionary: Key Differences ExplainedSep 18, 2025. This article dives into the core differences between lists, tuples, and dictionaries – three essential data structures. Learn when to use each one based on mutability, order, and use case. Discover how lists offer dynamic storage, tuples ensure immutability for speed, and dictionaries excel at key-value mappings.
  • Discards in Tuple and Object Deconstruction in C# .NETJul 01, 2024. In C#, deconstruction allows you to extract values from tuples and objects into separate variables. It's a powerful feature that enhances readability and simplifies code when working with complex data structures. Discards, introduced in C# 7.0, further extend this capability by enabling you to ignore values that you don’t need during deconstruction.
  • How to Declare and Initialize a Tuple in C#?Jul 31, 2023. Learn about C# tuples: immutable data structures for grouping elements, useful for returning multiple values from methods.
  • C# 7 Tuple ImprovementJun 02, 2020. In this article, you will learn about Tuple Improvement in C#.
  • What Is Tuple in C#Nov 13, 2019. In this article, you will learn about Tuple in C#.
  • Working With Tuple In C# 7.0Sep 18, 2018. In this article, let us see how to use the latest feature of Tuple in C# 7.0. Tuple is the very effective feature in C# 7.0 and it can be used when we want to return more than one value from a method.
  • Working With New Value Tuple Data Structure In C# 7.0Sep 07, 2018. In this article, you will learn about working with New Value Tuple Data Structure in C# 7.0.
  • Binding DropDown List Using Tuple In ASP MVCNov 05, 2017. Tuple is a generic static class that was added to C# 4.0 and it can hold any amount of elements, and they can be any type we want. So using tuple, we can return multiple values.One great use of tuple might be returning multiple values from a method. It provides an alternative to "ref" or "out" if you have a method that needs to return multiple new objects as part of its response.
  • Three Digit Sum Using Tuple in C#Nov 02, 2017. In this article, we will be discussing an algorithm which returns possible (no. of pairs) digit pairs that are equal to a given number (6) using Tuple class.
  • Working With Value Tuple In C# 7.0Mar 21, 2017. ValueTuple was introduced in C# 7.0. In this article, you will learn how to use a ValueTuple in C#.
  • Tuples Data Structure in Python Dec 02, 2024. Learn about Python tuples, a versatile data structure for storing heterogeneous or homogeneous values. Discover their immutability, practical use cases, and access methods with code examples and outputs.
  • Detailed use of Tuples and Value Tuples in C#Aug 16, 2024. This guide explores the detailed use of Tuples and ValueTuples in C#. It covers their differences, how to create and manipulate them, and practical examples for implementing them in real-world applications.
  • Difference Between Tuples vs ValueTuples in C#Aug 09, 2024. In this article, we will discover practical use cases for each, and understand when to choose one over the other in your C# applications to enhance code efficiency and readability.
  • Tuples in C# with examplesNov 15, 2023. This article on tuples in C# is well-structured, providing a clear and detailed explanation of the topic. It covers the basics, named tuples, returning multiple values from a method, tuple deconstruction, and more.
  • Exploring C# Tuples: Simplifying Data Structures with ExamplesAug 31, 2023. Discover the Power of C# Tuples: Simplifying Data Structures. Learn how Microsoft's C# language utilizes lightweight Tuples for efficient data grouping, enhancing code clarity, and improving performance.
  • ValueTuples in C#Apr 17, 2023. This article will explain the difference between ValueTuple and Tuple and the uses of ValueTuple.
  • F# TupleDec 23, 2022. Let's learn the F# tuple, a group of unnamed but ordered values, of possibly diverse types
  • Using Tuples Data Structure In Python 😋Jul 27, 2022. In this article, you will learn how to use Tuples Data Structure in Python.
  • Working With Tuples In C#Nov 22, 2021. In this article, I tried to explain the Tuples in c# and how we can use it in daily programming.
  • Function Of Tuple, List, String And Dictionary In PythonOct 20, 2021. In this article, you will learn about function of tuple, list, string and dictionary in python.
  • C# - Introduction Of TupleApr 05, 2021. In this article is we are going to discuss “Tuple” introduced in C# 6.0 and improved in C# 7.0.
  • Using Tuples in .NETMay 01, 2020. We have all used classes and structs to define entities in our .NET applications. While great to use, and forming the backbone of any .NET application, these are heavy-weight objects which can define both data and actions. On some occasions, we need this entity only to hold our data without any need for actions to be associated with it. That is when we can use the much less known object, Tuples. We will take a quick look at Tuples in this article and see how and where they can be used and look at the recent version of Tuples, the ValueTuple.
  • Understanding Tuples In PythonSep 03, 2019. This article is dedicated to Creating and Accessing Tuples, Tuples Operations, Functions and Methods and Tuple Manipulation in Python.
  • Compare Tuples In C#Jul 31, 2018. How to compare two tuples in C#. Tuple comparison is available in C# 7.3 or later versions and can be done by using equality == and != operators.
  • Learn Tuples In PythonJun 20, 2018. Tuples are useful types in Python. In this article, we will discuss basics of tuples and how to use tuples in Python, with code samples.
  • Tuples In C# 7 - What Are They And How Can I Use Them?Apr 28, 2017. Tuples In C# 7 - What Are They And How Can I Use Them?
  • C# 7.0 - Tuples To The Extreme!Mar 18, 2017. C# 7.0 - Tuples to the Extreme! A C# tuple is a data structure that has a specific number and sequence of elements. An example of a C# tuple is a data structure with three elements (known as a 3-tuple or triple) that is used to store an identifier such as a person's name in the first element, a year in the second element, and the person's income for that year in the third element.
  • Tuple In C# 7Mar 15, 2017. Tuple in C# 7. C# Tuple is an ordered sequence of heterogeneous objects. Tuples are lightweight data structures that contain multiple fields to represent the data members.
  • C# 7 Features - TuplesFeb 02, 2017. In this article, you will learn about tuples in C# 7.
  • Tuples With New Features In C# 7.0Jan 30, 2017. In this article, you will learn about new features of tuples in C# 7.0 along with Visual Studio 2017.
  • Tuples In C#Jan 05, 2017. C# tuple is a new data type. Learn how to use tuples in C#.
  • Use C# 7.0 Tuples In Visual Studio 2017Nov 28, 2016. In this article, we will see how to use tuples, a new cool feature of C# 7.0.
  • Tuple Class in C#May 13, 2016. This article demonstrates different scenarios of using Tuple Class in C#.
  • Jump Start With Python - Part 7 (Tuples)Feb 02, 2016. This article explains how to get started with programming in Python. This is part seven of the series focusing on list data types in Python.
  • Tuples and Anonymous Types in C#Jul 09, 2015. This article explains tuples and anonymous types in C#.
  • Tuples in C#Mar 05, 2015. Here you will learn about a class provided by C# that can be a more efficient way to return multiple values from a function.
  • Partial View Usage With Dynamic Expando Object and TupleFeb 17, 2015. In this article you will learn how to use a Partial View with a Dynamic Expando Object and Tuple.
  • Tuples in C#Feb 16, 2015. In this article you will learn about tuples in the C# language.
  • Using Tuples With .Net 4.0Apr 28, 2010. In this article let me explain the tuples world in a C# 4.0 scenario.
  • F# Tuples and Binding (and more Binding)Mar 26, 2008. Binding in F# is similar to using variables in C# but there are some big differences. This article discusses one of the most used keywords in F# for binding (let) and how it is different than setting a C# variable. I also cover the tuple F# data structure.
  • Top JavaScript Features Released in 2025Dec 11, 2025. This article discusses the top JavaScript features released in 2025 and shows how senior Angular developers can use them effectively. It includes real-world examples, Angular-focused implementation details, and production best practices. You also get practical migration advice and clear code samples.
  • How to Return More Than One Value from a Function in PythonOct 07, 2025. Unlock Python's power to return multiple values from functions! This guide explores tuples, named tuples, and dataclasses for efficient and readable code. Learn how to return heart rate, SpO2, and signal quality from a wearable device simulation. Discover best practices for maintainability, testing, and performance. Improve your Python skills today!
  • AI Roadmap: How to Go from Beginner to IntermediateJan 10, 2025. This article covers essential Python concepts, libraries (NumPy, Pandas, Scikit-learn, Matplotlib, SciPy), and machine learning frameworks (PyTorch, HuggingFace & Gradio), helping beginners progress to advanced proficiency in software development and data science.
  • Understanding Deconstruction in C#Dec 22, 2024. Deconstruction in C# and its use. Explore C# deconstruction to simplify object breakdown into variables using tuples or custom types, improving code readability, conciseness, and flexibility while enhancing pattern-matching capabilities for efficient data handling.
  • Python Data Types and CollectionsAug 22, 2024. Explore Python's essential data types and collections in this comprehensive guide. Learn about fundamental types like integers, floats, and strings, as well as advanced collections such as lists, tuples, dictionaries, and sets.
  • Discard Variable in C# .NETJul 17, 2024. The discard variable (_), introduced in C# 7.0, allows developers to ignore values intentionally. It enhances code clarity by signaling unused data in tuples, pattern matching, out parameters, and LINQ queries, promoting cleaner, more efficient, and maintainable programming in .NET applications.
  • What is Slicing in Python with ExampleMay 13, 2024. Python's slicing feature efficiently extracts elements from sequences like lists, strings, and tuples. This article illuminates slicing's syntax, usage, and examples, catering to beginners and experienced developers alike.
  • Common Mistakes and How to Avoid Them in C# Jan 05, 2024. In this article, we will learn how to avoid common mistakes in C# programming. From efficient null checking and using tuples instead of classes to optimizing string concatenation and evaluating default values correctly.
  • What Are The Data Types In Rust?Apr 27, 2023.
  • Collection Combine In PythonJul 22, 2022. In this article, we will see how we can combine collections easily in Python.
  • Query Processing In DBMSJul 14, 2022. Query Processing in DBMS is the approach of selecting the best strategy or plan which can be used to respond to a database request.
  • Functional Programming Using Vavr In JavaJan 03, 2022. Article explains how to implement Functional Programming concepts in Java application using Vavr library.
  • Python - Importance Of For Loop ✍️Jun 12, 2021. In this article, you will learn about for Loop in Python.
  • 📚 Python Operators And Literal Collections ✍️Jun 10, 2021. In this article, you will learn about Python Operators and Literal Collections.
  • Fundamentals Of Typescript - Basic ConceptsApr 27, 2021. In this article, you will learn about Fundamentals of Typescript - basic concepts.
  • Python DatatypesDec 01, 2019. In my previous article, we learned about Python Tokens. Here, we will see the Python Datatypes and how to implement them with the examples.
  • Data Types In PythonFeb 01, 2019. Every value in Python is represented in a data type. In this article, we will learn data types in Python with code examples.
  • Swift Programming - Zero To Hero - Part EightDec 12, 2017. This is Part Eight of Swift Programming - Zero To Hero Series. In this article, we will learn about Return Type & Tuples in swift.
  • Swift Programming - Zero To Hero - Part SevenOct 19, 2017. This is Part Seven of the "Zero to Hero" Series. In this article we will learn about Functions and Tuples.
  • Diving Into Python: Chapter 11May 19, 2015. This article describes Tuples in Python step-by-step and easily.
  • Diving Into Python: Chapter 7May 14, 2015. This article explains lists and tuples in Python, the related operations and the functioning in detail using several examples and graphics.