发布网友
共1个回答
热心网友
print (''.join(s for c in map(chr,a)))
中的s改成c
print (''.join(c for c in map(chr,a)))
c才是从map中迭代的字符,s是空字串,多个空字串join还是空的