Python基础 字符串输出,与+的区别 print(0*" “) 不输出空格 print(1*” “) 输出1个空格 print(0*” “,1*”") 输出1个空格和星号 print(1"") 输出1个星号 print(0" “+1*”*") 输出一个星号