input和raw_input的区别
??? input返回的是数值类型,如int,float??? raw_inpout返回的是字符串类型,string类型??? ??? 如输入 “57 + 3”: ??? input会得到整数60??? raw_input会得到字符串”57 + 3”