
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
Sindhura Repala has Published 39 Articles

Sindhura Repala
26K+ Views
In this article, we will demonstrate how to represent a tuple in Python using JSON format. We will explore the following methods throughout the article: Converting Python Tuple to JSON ... Read More

Sindhura Repala
2K+ Views
A tuple in Python is an ordered, immutable collection that holds multiple items, supports mixed data types, and allows indexing. Since tuples cannot be modified, index slicing can exclude specific elements when needed. Conversion to a ... Read More

Sindhura Repala
340 Views
A tuple in Python is an ordered, immutable collection that stores multiple items. It supports mixed data types, allows indexing, and is commonly used for fixed data structures. Unicode String A Unicode string in Python tuple refers to a tuple containing Unicode string values or a string that includes a ... Read More

Sindhura Repala
358 Views
A tuple in Python is an ordered, immutable collection that stores multiple items. It supports mixed data types, allows indexing, and is commonly used for fixed data structures. Non-literal Tuple Literal Tuple Non-Literal Tuple ... Read More

Sindhura Repala
277 Views
Immutable Vector in Python An immutable vector in Python is a fixed, ordered collection of numerical values that cannot be changed after creation. These are implemented using a tuple or libraries like immutable arrays, which specify data consistency, preventing modifications during computations. Representing Immutable Vectors Immutable vectors can be represented ... Read More

Sindhura Repala
247 Views
Separate tuple and list data types are provided because both have different roles. Tuples are immutable, whereas lists are mutable. That means Lists can be modified, whereas Tuple cannot. Tuples are sequences, just like lists. The differences between tuples and lists are, the tuples cannot be changed unlike lists and ... Read More

Sindhura Repala
3K+ Views
Lists of Tuples in Python A tuple is a built-in Python data structure for storing multiple items in a single variable. While both tuples and lists can organize ordered collections of items, tuples are immutable, whereas lists are mutable. A list can store heterogeneous values, including various types of data ... Read More

Sindhura Repala
567 Views
HTML5 supports five media elements, that are useful for creating media resources. The different media tags are , , , and . These tags are used to change the development, let us discuss each element in detail with an example − The tag To play videos on your ... Read More

Sindhura Repala
2K+ Views
A B-tree is a self-balancing tree in data structures that allows efficient storage of sorted data. Each node can hold multiple keys and have many child nodes. B-trees are versatile data structures that can efficiently handle large amounts of data. However, traditional binary search trees become inefficient for storing ... Read More

Sindhura Repala
851 Views
HTML Tag To set a smaller font size in an HTML document, use the tag. This tag decreases the font size by one level, from medium to small or extra-large to large. There are two ways to use the tag in HTML. The tag also supports ... Read More