python的外部输入
Python的外部输入常用的有三种形式:input(), raw_input(), 和sys.stdin.readline()1. input:输入的数据类型按照Python定义来,即为input = eval(raw_input())所以如果输入的整型数字则变量类型即为int,若输入为float,则输入变量类型也为float;需要注意的是,当用input输入字符串时,需要给字符串加上...