上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页
摘要: 文件相关操作 阅读全文
posted @ 2019-07-26 22:03 笑得好美 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 终端相关操作 目录相关操作 阅读全文
posted @ 2019-07-26 22:00 笑得好美 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-07-26 21:51 笑得好美 阅读(119) 评论(0) 推荐(0) 编辑
摘要: VMware下载地址: https://www.vmware.com/cn/products/workstation-pro/workstation-pro-evaluation.html centOS下载地址: https://www.centos.org/ xshell下载地址: http:// 阅读全文
posted @ 2019-07-26 21:49 笑得好美 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-07-26 21:44 笑得好美 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 可用于机器学习,进行相似度比对,问题库越丰富,机器学习效果越准确 阅读全文
posted @ 2019-07-26 21:35 笑得好美 阅读(398) 评论(0) 推荐(0) 编辑
摘要: 1 #分词pip install jieba 2 import jieba 3 str="你真的真不知道我是谁吗?" 4 res1=jieba.cut(str) 5 print(list(res1)) 6 7 #cut_for_search更详细的分词 8 res2=jieba.cut_for_se 阅读全文
posted @ 2019-07-26 21:33 笑得好美 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 可应用在同音汉字模糊匹配,比如在ai领域的语音识别方向 阅读全文
posted @ 2019-07-26 21:30 笑得好美 阅读(458) 评论(0) 推荐(0) 编辑
摘要: 1. 为什么学习 Python? 答题路线:a、python的优点,b、python的应用领域广 具体: 优点 1、python语法非常优雅,简单易学 2、免费开源 3、跨平台,可以自由移植 4、可扩展,可嵌入性强 5、第三方库丰富 应用领域 1、在系统编程中应用广泛,比如说shell工具。 2、在 阅读全文
posted @ 2019-07-24 21:15 笑得好美 阅读(1457) 评论(0) 推荐(0) 编辑
摘要: 由于比较简单,直接上代码(removebg接口官网),更多小工具获取 1 import requests 2 response = requests.post( 3 'https://api.remove.bg/v1.0/removebg', 4 files={'image_file': open( 阅读全文
posted @ 2019-07-24 18:29 笑得好美 阅读(5513) 评论(0) 推荐(0) 编辑
摘要: 新建的django项目中没有应用app01??? models中也没有UserInfo表???? 但在migrate是却一直报错!!!!! 产生此种现象的原因: 之前的项目中肯定是用到过应用app01,而且在models定义过UserInfo表(继承过django自带表,会产生缓存) 解决方式: ( 阅读全文
posted @ 2019-07-21 23:49 笑得好美 阅读(1959) 评论(0) 推荐(0) 编辑
摘要: 类封装高级版: 函数低级版: 阅读全文
posted @ 2019-07-21 23:45 笑得好美 阅读(309) 评论(0) 推荐(0) 编辑
摘要: 本项目采用django自带的数据库 项目文件 models.py 1 from django.db import models 2 from django.contrib.auth.models import AbstractUser 3 # Create your models here. 4 5 阅读全文
posted @ 2019-07-21 23:38 笑得好美 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 项目文件: models.py 1 from django.db import models 2 from django.contrib.auth.models import AbstractUser 3 # Create your models here. 4 5 class UserInfo(A 阅读全文
posted @ 2019-07-21 23:31 笑得好美 阅读(261) 评论(0) 推荐(0) 编辑
摘要: RABC:基于角色的权限访问控制(Role-Based Access Control) 一般在登录系统认证通过后,会先确定的该用户的操作权限,判断用户的后续操作是否合法! RABC至少需要三张表:用户表--角色表--权限表(多对多的关系比较合理) 用户表:用来存储用户名和密码,进行登录校验,可以重写 阅读全文
posted @ 2019-07-21 23:24 笑得好美 阅读(516) 评论(0) 推荐(0) 编辑
摘要: django中的admin管理系统: 在浏览器直接访问路径为admin的url,使用超级超级管理员(先手动创建python manage.py createsuperuser)进行登录即可; 通过admin管理数据库表格,需要在应用的admin.py文件中进行注册; 可以通过自定义类(继承model 阅读全文
posted @ 2019-07-21 23:22 笑得好美 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 项目文件: views.py 1 from django.shortcuts import render, HttpResponse 2 3 # Create your views here. 4 5 def index(request): 6 return render(request, 'ind 阅读全文
posted @ 2019-07-21 23:20 笑得好美 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 项目文件: models.py(建表) 1 from django.db import models 2 # Create your models here. 3 4 class Book(models.Model): 5 title = models.CharField(max_length=32 阅读全文
posted @ 2019-07-21 23:15 笑得好美 阅读(167) 评论(0) 推荐(0) 编辑
摘要: django分页: from django.shortcutsimportrender from django.core.paginator import Paginator,EmptyPage, PageNotAnInteger from app01 import models #分页对象和当前页 阅读全文
posted @ 2019-07-21 22:57 笑得好美 阅读(1045) 评论(0) 推荐(0) 编辑
摘要: models.py 1 from django.db import models 2 3 from django.contrib.auth.models import AbstractUser 4 5 6 class Userinfo(AbstractUser): 7 8 email = model 阅读全文
posted @ 2019-07-21 22:54 笑得好美 阅读(542) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 16 下一页