print("sss"+(i)) 提示can only concatenate str (not "int") to str 改为:print("sss"+str(i))
print("sss"+(i))
改为:print("sss"+str(i))