Hello guys I am having some issue trying to split my list into multiple element, my problem is the following: I have a list like that:
list1 = ['"22.23.24.25"']
(basically this list should represent an IP address but never mind) the problem is that I want to delete the quotation mark currently into my list, ideally my list would like:
list1 = ['22.23.24.25']
I really don't know how to do it since I am a beginner in python so it would be great if anyone can help me.