Right now I am having a list
>>> deints
[10, 10, 10, 50]
I want to print it as 10.10.10.50
. I made it as
Method 1
>>> print(str(deints[0])+'.'+str(deints[1])+'.'+str(deints[2])+'.'+str(deints[3]))
10.10.10.50
Are there any other ways we can acheivie this ?
Thank you