Skip to content
Advertisement

Tag: script

Print array value without brackets in Python

So, I have an array value like this with print(Items) it’s returning [‘*.abc.com’, ‘*.xyz.me’] but, I want to print everything without brackets like ‘*.abc.com’, ‘*.xyz.me’ Followed some way, but those are returning different not exactly what I want. Answer what about this? Output: i add a short description like mozway suggests: you convert your python list to a string (at

Advertisement