def formatResultString(*echoInfo):
    joinString=','
    ResultString = joinString.join(echoInfo[0])
    return ResultString

x=['lala','oka','woca','end']
print formatResultString(x)
#结果:lala,oka,woca,end

 

相关文章:

  • 2022-12-23
  • 2021-12-13
  • 2022-12-23
  • 2021-10-07
  • 2022-12-23
  • 2021-04-30
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-04
  • 2022-01-02
  • 2021-10-24
  • 2022-12-23
相关资源
相似解决方案