I have the following list in Python, which can be changed according to the user's data:
Dialer = [1,9,2,'.',1,6,8,'.',0,'.',2,6]
When I print the list I get this:
[1, 9, 2, '.', 1, 6, 8, '.', 0, '.', 2, 6]
How can I format the list to get something like this at the end?:
192.168.0.26
At the same time, how can I save this in a variable? Something like this:
Cadena = '192.168.0.26'