上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 23 下一页
摘要: 1.机器语言 程序员直接使用二进制与计算机沟通交流(二进制:逢二进一 01) 优势:计算机可以直接理解程序员的意思 执行效率高 劣势:学习成本太高 编写效率太低2.汇编语言 程序员用简单的英文字母来表示一串二进制数 优势:编写难度稍微降低一点点 执行效率高 劣势:学习成本较高 编写效率较低3.高级语 阅读全文
posted @ 2022-08-02 19:50 呼长喜 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 1.该软件前几年是免费的 但是近几年使用人数大大增加 所以改为收费 ps:群里发的是免费版本(千万不要更新)2.基本使用 1.标题 ctrl+数字(0 1 2 3 4 5 6)\警号个数 2.小标题 *或者+空格填写标题内容 3.语言环境 ```环境名称 4.表格文档 |表头字段|表头字段|表头字段 阅读全文
posted @ 2022-08-02 19:49 呼长喜 阅读(30) 评论(0) 推荐(0) 编辑
摘要: from django.db import models# Create your models here.class Book(models.Model): title = models.CharField(max_length=32) price = models.DecimalField(ma 阅读全文
posted @ 2022-07-27 21:29 呼长喜 阅读(102) 评论(0) 推荐(0) 编辑
摘要: from django.shortcuts import render,HttpResponse,redirectfrom book.models import Bookfrom django.urls import reverseimport datetime# Create your views 阅读全文
posted @ 2022-07-24 20:40 呼长喜 阅读(58) 评论(0) 推荐(0) 编辑
摘要: from django.shortcuts import render,HttpResponse,redirectfrom book.models import Bookfrom django.urls import reverseimport datetime# Create your views 阅读全文
posted @ 2022-07-23 18:29 呼长喜 阅读(37) 评论(0) 推荐(0) 编辑
摘要: """mysite URL ConfigurationThe `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/3.2/topics/ 阅读全文
posted @ 2022-07-23 18:02 呼长喜 阅读(24) 评论(0) 推荐(0) 编辑
摘要: from django.shortcuts import render,HttpResponsefrom book.models import Bookimport datetime# Create your views here.def add_book(request): if request. 阅读全文
posted @ 2022-07-17 18:18 呼长喜 阅读(93) 评论(0) 推荐(0) 编辑
摘要: from django.shortcuts import render,HttpResponsefrom book.models import Bookimport datetime# Create your views here.def add_book(request): if request. 阅读全文
posted @ 2022-07-11 19:06 呼长喜 阅读(125) 评论(0) 推荐(0) 编辑
摘要: from django.shortcuts import render,HttpResponsefrom book.models import Bookimport datetime# Create your views here.def add_book(request): if request. 阅读全文
posted @ 2022-07-10 20:42 呼长喜 阅读(24) 评论(0) 推荐(0) 编辑
摘要: from django.shortcuts import render,HttpResponsefrom book.models import Bookimport datetime# Create your views here.def add_book(request): if request. 阅读全文
posted @ 2022-07-09 21:28 呼长喜 阅读(100) 评论(0) 推荐(0) 编辑
摘要: from django.shortcuts import render,HttpResponsefrom book.models import Bookimport datetime# Create your views here.def add_book(request): #添加书籍 # 方式1 阅读全文
posted @ 2022-07-08 18:47 呼长喜 阅读(197) 评论(0) 推荐(0) 编辑
摘要: from django.db import models# Create your models here.class Book(models.Model): id = models.AutoField(primary_key=True) #自增类型 title = models.CharField 阅读全文
posted @ 2022-07-07 21:56 呼长喜 阅读(73) 评论(0) 推荐(0) 编辑
摘要: from django.db import models# Create your models here.'''create table t1( name varchar (32) unique not null age int xxx double 8 2 )'''class Ncov(mode 阅读全文
posted @ 2022-07-07 21:02 呼长喜 阅读(43) 评论(0) 推荐(0) 编辑
摘要: """Django settings for mysite project.Generated by 'django-admin startproject' using Django 3.2.For more information on this file, seehttps://docs.dja 阅读全文
posted @ 2022-07-06 20:25 呼长喜 阅读(116) 评论(0) 推荐(0) 编辑
摘要: PyMySQL是从Python连接到MySQL数据库服务器的接口, 简单理解就是,Pymysql是python操作mysql数据库的三方模块。就是可以理解为可以在python中连接数据库写MySQL命令。 一 。Pymysql使用基本流程 1、要有mysql数据库 2、要有python 3、要有py 阅读全文
posted @ 2022-07-06 20:01 呼长喜 阅读(2915) 评论(0) 推荐(0) 编辑
摘要: <!doctype html><html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content=" 阅读全文
posted @ 2022-07-06 19:54 呼长喜 阅读(23) 评论(0) 推荐(0) 编辑
摘要: """mysite URL ConfigurationThe `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/3.2/topics/ 阅读全文
posted @ 2022-07-05 21:03 呼长喜 阅读(103) 评论(0) 推荐(0) 编辑
摘要: """mysite URL ConfigurationThe `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/3.2/topics/ 阅读全文
posted @ 2022-07-05 20:05 呼长喜 阅读(38) 评论(0) 推荐(0) 编辑
摘要: """mysite URL ConfigurationThe `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/3.2/topics/ 阅读全文
posted @ 2022-07-05 19:58 呼长喜 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 执行用户:mysql 脚本内容: #! /bin/sh OSCheckCentOS8=`cat /etc/redhat-release 2>/dev/null |awk '{print $4}' |awk -F"." '{print $1}'`OSCheckSuse=`cat /etc/issue 阅读全文
posted @ 2022-07-03 19:00 呼长喜 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 执行方式:sh scripts.sh scriptsfile="Linux_Memory.sh" check="failed/true" 脚本参数详解: scriptsfile="" zbx二次开发监控脚本 check="" failed(执行)true(查看) 脚本内容: #! /bin/sh s 阅读全文
posted @ 2022-07-03 18:14 呼长喜 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 执行方式:sh scripts.sh hostname="TEST01" ip="198.145.0.122" check="failed/true" 脚本参数详解: hostname="" 执行主机的主机名 ip="" 执行主机的IP地址 check="" failed(执行)true(查看) 脚 阅读全文
posted @ 2022-07-03 17:40 呼长喜 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 执行方式:sh scripts.sh hostname="TEST01" ip="198.145.0.122" check="failed/true" 脚本参数详解: hostname="" 执行主机的主机名 ip="" 执行主机的IP地址 check="" failed(执行)true(查看) 脚 阅读全文
posted @ 2022-07-03 17:21 呼长喜 阅读(219) 评论(0) 推荐(0) 编辑
摘要: """mysite URL ConfigurationThe `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/3.2/topics/ 阅读全文
posted @ 2022-07-02 19:42 呼长喜 阅读(77) 评论(0) 推荐(0) 编辑
摘要: <!doctype html><html lang="zh-CN"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content=" 阅读全文
posted @ 2022-07-02 17:22 呼长喜 阅读(56) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 23 下一页