码迷,mamicode.com
首页 >  
搜索关键字:copy from    ( 69860个结果
Python3.9中弹窗提示代码实现,使用tkinter中的messagebox实现
from tkinter import messagebox messagebox.showinfo("提示", "我是一个提示框") ...
分类:编程语言   时间:2021-06-02 19:46:59    阅读次数:0
chinaMap
中国地图 基本地图 import pandas as pd from matplotlib.colors import rgb2hex from mpl_toolkits.basemap import Basemap import matplotlib.pyplot as plt ### 1. 中国 ...
分类:其他好文   时间:2021-06-02 19:40:47    阅读次数:0
Python函数装饰器高级用法
在了解了Python函数装饰器基础知识和闭包之后,开始正式学习函数装饰器。 典型的函数装饰器 以下示例定义了一个装饰器,输出函数的运行时间: 函数装饰器和闭包紧密结合,入参func代表被装饰函数,通过自由变量绑定后,调用函数并返回结果。 使用clock装饰器: import time from cl ...
分类:编程语言   时间:2021-06-02 19:37:36    阅读次数:0
module 'tensorflow.compat.v2' has no attribute '__internal__
from keras.utils import to_categorical module 'tensorflow.compat.v2' has no attribute '__internal__ from keras.utils import to_categorical $ python te ...
分类:其他好文   时间:2021-06-02 19:29:42    阅读次数:0
私人书信
My Dear Friend, Congratulations on your graduation from college! I am glad to hear that you plan on starting your career in China, and I would like to ...
分类:其他好文   时间:2021-06-02 19:29:05    阅读次数:0
实验五
复制代码 class Account: def __init__(self,name,account_number,initial_amount): self._name = name self._card_no = account_number self._balance = initial_am ...
分类:其他好文   时间:2021-06-02 19:24:45    阅读次数:0
表格的拖拽排序功能---应用splice方法
1.引入sortablejs文件 import Sortable from 'sortablejs' 2.代码 合理运用splice方法,删掉旧索引的对象,再以新索引把旧对象重新加回去 methods: { async getList() { this.listLoading = true cons ...
分类:编程语言   时间:2021-06-02 18:57:28    阅读次数:0
DQL语句
一般查询 字段取别名 别名不用加单引号,as可省略 select t.id ID, t.name 名称 from grade t; 拼接字符串 concat(a,b):不能用|| select concat('姓名:', t.name) 新名字 from student t; 字段去重 select ...
分类:其他好文   时间:2021-06-02 18:42:52    阅读次数:0
Django数据库操作的注意事项《特别篇》!
数据库查询操作,一般使用生sql和模型对象,两种方式! 模型操作使用一般不会有太大的问题, 但是使用原生sql(pymysql)时有可能会遇到数据库查询周期性或者连续性失败的情况: import pymysql from allinone.settings import BASE_DIR class ...
分类:数据库   时间:2021-06-02 18:29:25    阅读次数:0
Django内置分页
作用:数据库有几千万条数据,这些数据需要展示,我们不可能直接从数据库把数据全部读取出来,这样会给内存造成特别大的压力,有可能还会内存溢出,所以我们希望一点一点的取,那展示的时候也是一样的,总是要进行分页显示,我们之前自己都写过分页。 导入分页模块 from django.core.paginator ...
分类:其他好文   时间:2021-06-02 18:23:56    阅读次数:0
69860条   上一页 1 ... 26 27 28 29 30 ... 6986 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!