How do I remove the quotes in this list?

Viewed 31

In this code the output is 'G','R','A','I','N' but i need it to be G,R,A,I,N, why? Also I'm on python 3.10 just in case that's important list=["G","R","A","I","N"] print(list)

1 Answers
list=["G","R","A","I","N"]
print(','.join(list))

I think you meant this.

Related