The following Python program is prepared to convert a given tuple of positive integers into a single integer. For example, the tuple (1, 2, 3) will be converted to the single integer 123, and the tuple (10, 20, 40, 5, 70) will be converted into the single integer 102040570. What should be the Python code of the incomplete lines to achieve this task? (4 Points)
T = (10, 20, 45, 5, 70)
TupleToInt = ""
for i in T:
TupleToInt += str(i)
print(TupleToInt)
Enter your answer