Hi, I have one question regarding lists in python. Let’s say I have a list like this:
list=['one','two','three']
…and I want to print it out in this form:
['one',
'two',
'three']
…I cant just add \n
, can anyone tell me how? (withouth using pprint).
Thanks