摘要:
1. 请解释什么是转发与重定向,它们有什么区别 转发:对web用户是透明的,或者说在Web浏览器中的Url是不会变的,在服务器会根据Url去读取特定的资源,并将资源的内容返回给客户端 http://localhost:5000/test.tml 服务端资源对于用户不一定是可访问的 重定向:用户是可见
阅读全文
posted @ 2022-04-21 10:43
yuminhu
阅读(894)
推荐(0)
编辑
摘要:
1. 静态路由和动态路由有什么区别 路由:Url Path http://localhost/abc/test.html abc/test.html 静态路由:Path与路由函数一一对应 动态路由:多个Path与同一个路由函数对应 http://localhost/abc/test.html htt
阅读全文
posted @ 2022-04-21 10:16
yuminhu
阅读(168)
推荐(0)
编辑
摘要:
请通过代码说明try...except... else 中else子句的作用 while True: try: x = int(input('请输入x:')) y = int(input('请输入y:')) value = x / y print('x / y is ', value) pass e
阅读全文
posted @ 2022-04-21 09:05
yuminhu
阅读(24)
推荐(0)
编辑
摘要:
1. python是否支持多继承,请举例说明 支持多继承 class Calculator: def calculate(self, expression): return eval(expression) class MyPrint: def print(self, msg): print('ms
阅读全文
posted @ 2022-04-21 09:00
yuminhu
阅读(37)
推荐(0)
编辑