我有一個字符串列表列表,我想將其轉換爲字符串列表,在每個列表項目之間添加一個空格。例如。將字符串列表轉換爲字符串列表
original_list = [['the', 'cat', 'in', 'the', 'hat'], ['fat', 'cat', 'sat', 'on', 'the', 'mat']]
desired_output = ['the cat in the hat', 'fat cat sat on the mat']
我知道我可以用這個做到這一點:
desired_output
for each in original_list:
desired_output.append(' '.join(each))
,但因爲我有大量數據的工作我的理想尋找一種更有效的方式來做到這一點。
它應該是'''.join(each)'而不是'''.join(each)'代碼 –
@KaushikNP Cheers - 這是一個錯字。 – jdoe