python字符串每个字符后加空格

// 将空格添加到字符串'hello'中
a = ' '
print(a.join('hello'))

你可能感兴趣的:(python)