So say I have a list named myList
and it looks something like this :
myList = ["a", "b", "c"]
How would you print it to the screen so it prints :
abc
(yes, no space inbetween)
If I use print(myList)
It prints the following:
['a', 'b', 'c']
Help would be much appreciated.