0% found this document useful (0 votes)
5 views1 page

Python Tuple Manipulation Programs

The document outlines several Python programming tasks related to tuples. These tasks include creating a new tuple with even elements, counting digits and strings, adding an item, converting a tuple of integers into a single integer, and computing the element-wise sum of multiple tuples. Each task is accompanied by examples to illustrate the expected outcomes.

Uploaded by

keerthanasr2009
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Python Tuple Manipulation Programs

The document outlines several Python programming tasks related to tuples. These tasks include creating a new tuple with even elements, counting digits and strings, adding an item, converting a tuple of integers into a single integer, and computing the element-wise sum of multiple tuples. Each task is accompanied by examples to illustrate the expected outcomes.

Uploaded by

keerthanasr2009
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Tuples

1. Write a program to create a new tuple with only the even elements
from the given tuple and also find its sum.
2. Write a program to count the number of digits, strings in a given
tuple.
3. Write a Python program to add an item in a tuple.
4. Write a Python program to convert a given tuple of positive
integers into an integer. Original tuple:
(1, 2, 3)
Convert the said tuple of positive integers into an integer:
123
Original tuple:
(10, 20, 40, 5, 70)
Convert the said tuple of positive integers into an integer:
102040570
5. Write a Python program to compute element-wise sum of
given tuples.
Original tuples:
(1, 2, 3, 4)
(3, 5, 2, 1)
(2, 2, 3, 1)
Element-wise sum of the said tuples:
(6, 9, 8, 6)

You might also like