Question: Write a Python program to convert a given tuple of positive integers into an integer. You are not allowed to use join and map. (Hint:
Write a Python program to convert a given tuple of positive integers into an integer. You are not allowed to use join and map. (Hint: if the tuple has 3 numbers, the first one from the left should be multiplied by 100, the second one multiplied by 10, and add all three numbers to get the result.)



Write a Python program to convert a given tuple of positive integers into an integer. You are not allowed to use join and map. (Hint: if the tuple has 3 numbers, the first one from the left should be multiplied by 100, the second one multiplied by 10, and add all three numbers to get the result.) nums = (1,2,3) H:\>python C:\Users aslsabbaghpourhokma\Documents\IT2431\Module3\assign3-6.py 123 nums = = (6,5,1,2,0,4) H:\>python C:\Users aslsabbaghpourhokma\Documents\IT2431\Module3\assign3-6.py 651204 Write a Python program to calculate the average of the numbers in a given tuple of tuples, and create a tuple of the averages. nums = ((10, 10, 10, 12), (30, 45, 56), (81, 80, 39, 32, 90), (1, 2, 3, 4, 0)) H:\>python C:\Users aslsabbaghpourhokma\Documents\IT2431\Module3\assign3-7.py Original Tuple: ((10, 10, 10, 12), (30, 45, 56), (81, 80, 39, 32, 90), (1, 2, 3, 4, 0)) New Tuple: (10.5, 43.666666666666664, 64.4, 2.0) nums = = ((10, 5, 10, 12), (1, 2)) H:\>python C:\Users aslsabbaghpourhokma\Documents\IT2431\Module3\assign3-7.py Original Tuple: ((10, 5, 10, 12), (1, 2)) New Tuple: (9.25, 1.5) 4 Filename: assian3-8 ny Write a Python program that reads one string from the cmd and converts it to a tuple. H:\>python C:\Users aslsabbaghpourhokma\Documents\IT2431\Module3\assign3-8.py "Welcome World" ('W', 'e', 'l', 'c', 'o', 'm', 'e', ', 'W', 'o', 'r', 'l', 'd') H:\>python C:\Users aslsabbaghpourhokma\Documents\IT2431\Module3\assign3-8.py Hello ('H', 'e', 'l', 'l', 'o')
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
