Tuple to String in Python

Tuple to String in Python

We know that lists, tuples, and dictionaries are the data structures available in Python that enable us to build long codes in a precise manner.

Let’s have a quick recap of tuples.

Tuples are a type of data structure in Python which are immutable and the elements of the tuple are enclosed within parentheses.

For Example –

tup = (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)

tup1 = (2.3, 4.6, 9.7)

tup3 = (‘C’, ‘C++’, ‘JAVA’, ‘Python’, ‘R’)

In this article, we will discuss the methods of converting a tuple to a string in Python-

  1. Using for loop
  2. Using join
  3. Using reduce

Let us have a look at each one of them-

Method – 1: Using for loop

In the first method, we will use for loop to convert Python tuple to string.

In this program, for loop will help us to take each iterator from the tuple and apply a function to it.

The following program shows how it can be done.

Example –

Output:

PythonatJTP

Let us understand what happened in the above program-

  1. We have created a function that will convert an element from a tuple to a string.
  2. In the definition of the program, we have mentioned that each iterator will take an element and merge it with the declared empty string. This function will finally return the resultant string.
  3. Outside the function, we have declared our tuple with the name ‘c_tuple’ and then passed it into our function.
  4. On executing this program, the expected output is displayed.

Method – 2: Using join() method

In the next program, we shall see how the join() method help us to do the same-

The join() method takes the items and combines them to form a string.

The following program shows how it can be done-

Example –

Output:

PythonatJTP

Let us understand what happened in the above program-

  1. We have created a function that will convert an element from a tuple to a string.
  2. In the definition of the program, we have mentioned that the join() method will take the elements from c_tuple and merge them with the empty string. This function will finally return the resultant string.
  3. Outside the function, we have declared our tuple with the name ‘c_tuple’ and then passed it into our function.
  4. On executing this program, the expected output is displayed.

Method – 3: Using reduce()

Here we will make use of reduce for the conversion.The following program illustrates how it can be done in Python-

Example –

Output:

PythonatJTP

Explanation –

  1. The first step here is to import functools and operators.
  2. After this, we have created a function that will convert an element from a tuple to a string.
  3. In the definition of the program, we have specified the parameters operator.add (this will add each element from a tuple to a string) inside the functools.reduce method. +This function will finally return the resultant string.
  4. Outside the function, we have declared our tuple with the name ‘c_tuple’ and then passed it into our function.
  5. On executing this program, the expected output is displayed.

So, in this tutorial, we learned the various ways of converting a tuple to a string in Python.


原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263416.html

(0)
上一篇 2022年5月30日
下一篇 2022年5月30日

相关推荐

发表回复

登录后才能评论