# 按逗号分隔列表 big_data = ['hadoop', 'hive', 'spark'] new_list = ','.join(str(n) for n in big_data) print(new_list)