Q:

Write a Python program to convert a list of multiple integers into a single integer

0

Write a Python program to convert a list of multiple integers into a single integer.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

L = [11, 33, 50]
print("Original List: ",L)
x = int("".join(map(str, L)))
print("Single Integer: ",x)

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now