摘要:
阅读全文
摘要:
import matplotlib.pyplot as plt import numpy as np # 绘制普通图像 x = np.linspace(-1, 1, 50) y1 = 2 * x + 1 y2 = x**2 plt.figure() plt.plot(x, y1) plt.plot( 阅读全文
摘要:
设计一个数据库用户权限管理系统 模块导入模块 阅读全文
摘要:
http://www.cnblogs.com/wupeiqi/articles/5369773.html 532 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> #img img{ height: 200px; width: 200px; } </style> </head> 阅读全文
摘要:
from django.db import models # Create your models here. class User(models.Model): username=models.CharField(max_length=32) password=models.CharField(m 阅读全文
摘要:
http://www.cnblogs.com/buchizaodian/p/7076964.html 阅读全文
摘要:
www.cnblogs.com/alex3714/articles/5978329.html 1. ORM介绍 orm英文全称object relational mapping,就是对象映射关系程序,简单来说我们类似python这种面向对象的程序来说一切皆对象,但是我们使用的数据库却都是关系型的,为 阅读全文
摘要:
https://www.cnblogs.com/wupeiqi/articles/5237704.html https://code.ziqiangxuetang.com/django/django-middleware.html 我们从浏览器发出一个请求 Request,得到一个响应后的内容 Ht 阅读全文