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
Programming Articles - Page 1340 of 3366
5K+ Views
When it is required to add a dictionary to a tuple, the 'list' method, the 'append', and the 'tuple' method can be used.A list can be used to store heterogeneous values (i.e data of any data type like integer, floating point, strings, and so on).The 'append' method adds elements to the end of the list.Below is a demonstration of the same −ExampleLive Demomy_tuple_1 = (7, 8, 0, 3, 45, 3, 2, 22, 4) print ("The tuple is : " ) print(my_tuple_1) my_dict = {"Hey" : 11, "there" : 31, "Jane" : 23} print("The dictionary is : ") ... Read More
3K+ Views
When it is required to find the maximum element in a tuple list (i.e. list of tuples), the 'max' method and the 'operator. itemgetter()' method can be used. The itemgetter fetches a specific item from its operand. The 'max()' method gives the maximum value present in an iterable that is passed as an argument to it. Some of the common methods to find the maximum element in a tuple list are as follows. 'itemgetter()' function: Used for retrieving items from an iterable object such as a ... Read More
209 Views
When it is required to chunk the tuples to 'N' values, list comprehension is used.The list comprehension is a shorthand to iterate through the list and perform operations on it.Below is a demonstration of the same −ExampleLive Demomy_tuple_1 = (87, 90, 31, 85, 34, 56, 12, 5) print("The first tuple is :") print(my_tuple_1) N = 2 print("The value of 'N' has been initialized") my_result = [my_tuple_1[i : i + N] for i in range(0, len(my_tuple_1), N)] print("The tuple after chunking is : ") print(my_result)OutputThe first tuple is : (87, 90, 31, 85, 34, 56, 12, 5) The ... Read More
224 Views
When it is required to access the front and rear elements of a Python tuple, the access brackets can be used.A tuple is an immutable data type. It means, values once defined can't be changed by accessing their index elements. If we try to change the elements, it results in an error. They are important contains since they ensure read-only access.Below is a demonstration of the same −ExampleLive Demomy_tuple_1 = (87, 90, 31, 85, 34, 56, 12, 5) print("The first tuple is :") print(my_tuple_1) my_result = (my_tuple_1[0], my_tuple_1[-1]) print("The front and rear elements of the tuple are ... Read More
3K+ Views
When it is required to check if one tuple is a subset of the other, the 'issubset' method is used.The 'issubset' method returns True if all the elements of the set are present in another set, wherein the other set would be passed as an argument to the method.Otherwise, this method returns False.Below is a demonstration of the same −ExampleLive Demomy_tuple_1 = (87, 90, 31, 85) my_tuple_2 = (34, 56, 12, 5) print("The first tuple is :") print(my_tuple_1) print("The second tuple is :") print(my_tuple_2) my_result = set(my_tuple_2).issubset(my_tuple_1) print("Is the second tuple a subset of the first tuple ... Read More
2K+ Views
When it is required to perform tuple multiplication, the 'zip' method and the generator expression can be used.The zip method takes iterables, aggregates them into a tuple, and returns it as the result.Generator is a simple way of creating iterators. It automatically implements a class with '__iter__()' and '__next__()' methods and keeps track of the internal states, as well as raises 'StopIteration' exception when no values are present that could be returned.Below is a demonstration of the same −ExampleLive Demomy_tuple_1 = (23, 45, 12, 56, 78) my_tuple_2 = (89, 41, 76, 0, 11) print("The first tuple is : ") ... Read More
3K+ Views
When it is required to check if an element is present in the tuple or not, a simple loop can be used. A tuple is an immutable data type. It means, values once defined can't be changed by accessing their index elements. If we try to change the elements, it results in an error. They are important contains since they ensure read-only access.Below is a demonstration of the same −ExampleLive Demomy_tuple_1 = (23, 45, 12, 56, 78, 0) print("The first tuple is : ") print(my_tuple_1) N = 12 print("The value of 'N' has been initialized") my_result = False ... Read More
213 Views
When it is required to create 'N' element incremental tuples, generator expression and 'tuple' method can be used.Below is a demonstration of the same −ExampleLive DemoN = 3 print("The value of 'N' has been initialized") print("The number of times it has to be repeated is : ") print(N) my_result = tuple((elem, ) * N for elem in range(1, 6)) print("The tuple sequence is : ") print(my_result)OutputThe value of 'N' has been initialized The number of times it has to be repeated is : 3 The tuple sequence is : ((1, 1, 1), (2, 2, 2), (3, 3, 3), (4, ... Read More
16K+ Views
GUI window has many controls such as labels, buttons, text boxes, etc. We may sometimes want the content of our controls such as labels to update automatically while we are viewing the window.We can use after() to run a function after a certain time. For example, 1000 milliseconds mean 1 second. The function which we call continuously after a certain amount of time will update the text or any updation you want to happen.We have a label on our window. We want the text of the label to update automatically after 1 second. To keep the example easy, suppose we ... Read More
183 Views
When it is required to create a tuple from a string and a list, the tuple method can be used.A list can be used to store heterogeneous values (i.e data of any data type like integer, floating point, strings, and so on).Below is a demonstration of the same −ExampleLive Demomy_list_1 = ['Hey', 'there', 'How', 'are', 'you'] my_list_2 = 'Jane' print("The first list is :") print(my_list_1) print("The string is :") print(my_list_2) my_result = tuple(my_list_1 + [my_list_2]) print("The aggregated tuple is : ") print(my_result)OutputThe first list is : ['Hey', 'there', 'How', 'are', 'you'] The string list is : Jane ... Read More