Contains: 1、decorators 2、functools 首先我们看下tornado中使用的装饰器 1、@tornado.web.authenticated 引用Decorate methods with this to require that the user be logged in. def authenticated(method): ""& ...
text = raw_input("Enter a string:")将用户的输入当作字符串(str),即text是字符串。 num = input("Enter a number:")将用户的输入当作数字(int or float),即num是数字。 测试: >>>text = raw_input("Enter a ...