%s,表示格化式一个对象为字符串%d,整数%r ,不管什么都打印出来例如:"Hello, %s"%"zhang3" => "Hello, zhang3""%d"%33 => "33""%s:%d"%("ab",3) => "ab:3"