w3resource

Python Exercise: Convert a given tuple of positive integers into an integer

Python tuple: Exercise-29 with Solution

Write a Python program to convert a given tuple of positive integers into an integer.

Sample Solution:

Python Code:

# Define a function named 'tuple_to_int' that takes a tuple 'nums' as input.
def tuple_to_int(nums):
    # Convert the tuple elements to a single integer by joining them as strings,
    # mapping each element to a string, and then converting the result to an integer.
    result = int(''.join(map(str, nums)))
    
    # Return the resulting integer.
    return result

# Create a tuple 'nums' containing positive integers.
nums = (1, 2, 3)

# Print a message indicating the original tuple of positive integers.
print("Original tuple: ") 

# Print the 'nums' tuple.
print(nums)

# Print a message indicating the conversion of the tuple to an integer using the 'tuple_to_int' function.
print("Convert the said tuple of positive integers into an integer:")

# Call the 'tuple_to_int' function to convert the tuple to an integer and print the result.
print(tuple_to_int(nums))

# Create another tuple 'nums' with a different set of positive integers.
nums = (10, 20, 40, 5, 70)

# Print a message indicating the original tuple of positive integers.
print("\nOriginal tuple: ") 

# Print the 'nums' tuple.
print(nums)

# Print a message indicating the conversion of the tuple to an integer using the 'tuple_to_int' function.
print("Convert the said tuple of positive integers into an integer:")

# Call the 'tuple_to_int' function to convert the tuple to an integer and print the result.
print(tuple_to_int(nums))

Sample Output:

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

Flowchart:

Flowchart: Convert a given tuple of positive integers into an integer.

Python Code Editor:

Previous: Write a Python program to convert a tuple of string values to a tuple of integer values.
Next: Write a Python program to check if a specified element presents in a tuple of tuples.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/tuple/python-tuple-exercise-29.php