Output a list of integers as a single integer | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Output a list of integers as a single integer

Hello. I'm looking for a solution to the following problem: my_list = [1,2,3] need to print 123 as a single number, or be able to save it in a variable for later usage I know how to do it with built in functions, and by using conversion to string then back to int, but I need the mathematical way of doing it. I know you are supposed to multiply the numbers by 100/10 but I cannot figure out how to do it in python. Solutions in other languages are welcome too. Thank you!

31st Mar 2021, 10:09 AM
Vladimir
Vladimir - avatar
4 Answers
+ 1
May be it helpful! https://code.sololearn.com/c7FeTgz48x4u/?ref=app If it helpful, then don't copy the code, try yourself.
31st Mar 2021, 11:28 AM
Vadivelan
+ 2
You just need to print the elements of the array from start to end. You can use a loop, increase the index and print the elements.
31st Mar 2021, 10:32 AM
Kashyap Kumar
Kashyap Kumar - avatar
+ 2
Thank you, Vadivelan! That is exactly what I was looking for! I will not copy it, just study the logic behind the algorithm.
31st Mar 2021, 12:39 PM
Vladimir
Vladimir - avatar
0
Yes, that works, but it is not what I'm looking for. I need the mathematical (algorithmic) way of "joining" those three integers together (1,2,3 -> 123)
31st Mar 2021, 11:26 AM
Vladimir
Vladimir - avatar