python学习之html从0开始(一)】的更多相关文章

经过这几天的折腾,经历了Django的各种报错,翻译的内容虽然不错,但是与实际的版本有差别,会出现各种奇葩的错误.现在终于找到了解决方法:查看英文原版内容:http://djangobook.com/ 加入你使用的是CentOS系统或者Mac,默认版本是2.X,请及时更新版本到3.X 书中是这么说的: You can see that, and Python to be installed. If your system . 对于没有经验的人来说,使用python2.7 ,这是一个陷阱! Dan…
Python是一门解释性语言,弱类型语言 python程序的两种编写方式: 1.进入cmd控制台,输入python进入编辑模式,即可直接编写python程序 2.在.朋友文件中编写python代码,通过python命令执行python代码(注意:在python2中的中文编码会有问题,python2使用的ASCII码编码,处理不了中文,我们需要替换为utf-8编码格式: -*- encoding:utf-8-*-) =  : 执行顺序,把等号右边的值赋值给等号左边的值 变量:变量用于临时记录一个值…
WTF表单  wtf.py pip install flask-wtf  # 安装 from flask_wtf import FlaskForm from wtform import StringField, PasswordField, SubmmitField app.config[" class register(flaskform): username = StringField("用户名:", render_kw={"placeholder":…
路由参数与请求方式制定   ALT+回车 pycharm 快速导包  demo3  指定访问地址  与请求方式  #   给路由传入参数 使用尖括号 ,视图函数需要接收参数 @app.route("/index/<int:user_id>", method=['POST, 'GET']) def index(user_id): return "%s + demo" % user_id from flask import Flask, request ap…
<!DOCTYPE html> <html> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <title>页面1</title> </head> <body> 默认<select>:<select> <option value="1…
jinjia2 模板 python实现 flask 内置语言  参照Djago实现  设置模板文件夹 设置模板语言 jinja2 demo6_template.html  ----> 从代码渲染值 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head>…
钩子函数和装饰器路由实现 before_request 每次请求都会触发 before_first_requrest  第一次请求前触发 after_request  请求后触发 并返回参数 teardown_request  失败后触发 并返回异常 需要传入参数接收 from flask import Flask, request # 设置对象 app = Flask(__name__, static_url_path='/python27', static_folder='static',…
3.1正则转换器定义 Class RegexConverter(BaseConverter): regex = "[0-9]{6}" app.url_map.converters["re"] = RegexConverter @app.route("/user/<re:user_id>") def index(): return "hello wolrd" from flask import Flask from…
assert 断言 def div(num1, num2): # 断言 assert isinstance(num1, int), "值类型错误" assert isinstance(num2, int), "值类型错误" assert num2 != 0, "除数不为0" return num1 / num2 if __name__ == '__main__': print(div(100, 0)) 单元测试unittest 1.需要继承uni…
<html> <head> <title>js页面</title> <script src="js/old_boy.js"></script> <style type="text/css"> .show{ } .hide{ display:none; } .enter{ color:black; } .leave{ color:gray; } </style> </…