Как распечатать список без кронштейнов и запятой Python
#How to remove brackets and commas from a list (Python)
#Converts list to a string, strips brackets from new string, then replaces all apostrophes with empty spaces
print(str(listData).strip('[]').replace('\'', ''))
miss ma'am