Print array value without brackets in Python

So, I have an array value like this "Items": [ "*.abc.com", "*.xyz.me" ] 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. >Solution : what about this? t = [ "*.abc.com", "*.xyz.me" ] t… Read More Print array value without brackets in Python

Remove specific lines in json file using python

So I got a json file that looks like this : [ { "mint": "FVc2AoQDyzxQkrAaHUt7GdqBXng9YwhSGkqBJ2DAqkES", "holder": "8M6dq1ieLKeMQqsuHYynsy3mDKzPLJrMH5UcbJB7YfmE" }, { "mint": "HBid7GNCZZwCtBktWcN6N6YuV47QEFKZWi6pRtwd7616" }, { "mint": "AwJFMswcw9WmV1CjkuSRF5VqfsX2neSZUjqwXsqnQKcb" }, { "mint": "BTXciaAzzcZ5ge4q43GweAAqSRF3VEXTPRTw5xtxA63J", "holder": "77KvrLhgAo5xc2rmyvVkknhS1yVCCUAf25dhXdSgAxup" }, ] I want to remove the following: lines starting with "mint" brackets {} commas ,. Expected output: [ "holder": "8M6dq1ieLKeMQqsuHYynsy3mDKzPLJrMH5UcbJB7YfmE" "holder": "77KvrLhgAo5xc2rmyvVkknhS1yVCCUAf25dhXdSgAxup" ]… Read More Remove specific lines in json file using python