The following Python program is prepared to convert given tuple of positive integers into a
single integer. For example, the tuple (1, 2, 3) will be converted to single integer 123 and the
tuple (10, 20, 40, 5, 70) will be converted into 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)
S=""
for i in T:
TupleToInt=
print(TupleToInt)
Enter your answer