摘要:
字符串常用函数 func main() { a := "hello worldeee" fmt.Println(strings.Contains(a, "h")) // h是否存在于a s := []string{"123", "456"} fmt.Println(strings.Join(s, " 阅读全文
摘要:
文件操作 func main() { // 创建文件 // 创建文件会清空已存在的文件 // 创建文件,文件路径,路径1:\\ 2:直接 / 即可 f, err := os.Create("./users/aaa.txt") if err != nil { // 文件路径不存在 // 文件无操作权限 阅读全文
摘要:
水平分表 # Create your models here. from django.db import models # 得到表模型类 # name是表名,fields是字段,app_label是你的应用名(如:flow),module是应用下的模型(如:flow.models),options 阅读全文
摘要:
pipenv install pipenv --python 3.6 pipenv install django==2.1.8 django-admin startproject DjangoPractice python manage.py startapp pvmi pipenv install 阅读全文
摘要:
Celery 项目:多任务结构使用 目录结构: celery_project ├── celery_tasks │ ├── celery.py # 必须这个名字 │ └── tasks1.py │ └── tasks2.py ├── check_result.py # 检查结果 └── send_t 阅读全文