data = pd.read_json('https://raw.githubusercontent.com/OMS1996/DAV-5400/master/Books.json')
data= data.transpose()
data=data[["Title","Authors","Publisher","Language","Pages"]]
data
This is the result of the code above
Title Authors Publisher Language Pages
Book1 David Copperfield Charles Dickens Wordsworth Editions Ltd English 768
Book2 C how to program [Havey Deitel, Paul Deitel] Prentice Hall English 912
Book3 12 Rules for life Jordan Peterson Penguin English 448
I would like to remove the '[' as well as the ']' from the Author column. I tried .replace(,) it didn't work and I also tried .str.replace it didn't work.
All the similar questions didn't help
Thank you