Computer Science, asked by AmanRohera, 3 months ago

Write a program to create three tuples from the inputs given below :
( 1 ) “ abcdef ”
(2) 3,4,5, 6
(iii) [11, 12, 13]​

Answers

Answered by supriya1977s
0

Answer:

Python 3 - Tuples

Accessing Values in Tuples. To accessvalues in tuple, use the square brackets for slicing along with the index or indices to obtain the value available at that index. ...

Updating Tuples. Tuples are immutable, which means you cannot update or change the values of tuple elements. ...

Delete Tuple Elements.

Explanation:

Mark as brainiest

Follow me

Answered by amitsharma0001999
0

Explanation:

a = [1,2,3,4,5]

b = [6,7,8,9

Similar questions