【E-08】expected str instance, java.lang.String found
时间:2020-07-26 22:53:44
收藏:0
阅读:72
其实join函数就是字符串的函数,参数和插入的都要是字符串
? ?
所以:将s = ‘_‘.join(args)变成s = ‘_‘.join(str(args).strip())
评论(0)