select2在bootstrapmodal中不能正常使用问题设置CSS.select2-drop{z-index:10050!important;}.select2-search-choice-close{margin-top:0!important;right:2px!important;min-height:10px;}.select2-search-choice-close:before{
分类:
其他好文 时间:
2018-11-28 17:36:33
阅读次数:
316
Python练习题目1:用Python实现队列(先入先出)入队出队队头队尾队列是否为空显示队列元素代码:list=[]##定义空列表用于存储数据tip="""******队列******1.入队2.出队3.队头4.队尾5.队列是否为空6.显示队列元素(输入q退出)"""##定义登入界面while1:print(tip)##打印登入界面choice=input(‘‘)##输入变量存储ifchoice
分类:
编程语言 时间:
2018-11-27 14:45:06
阅读次数:
174
1. Counter(hashable) 直接使用统计可哈希元素每个元素的数量。 2. most_common:可以统计数量最多的n个元素。 3. compress(iterable, callable) 根据序列去选择输出对应位置为 True 的元素。 4. choice(iterable) ra ...
分类:
编程语言 时间:
2018-11-22 11:45:38
阅读次数:
201
product_list=[('Mac',9000), ('kindle',800), ('tesla',900000), ('book',50), ('bike',2000)]money=input('please input your money:')#输入本金shopping_car=[]if ...
分类:
编程语言 时间:
2018-11-21 17:35:50
阅读次数:
125
TinyURL is a URL shortening service where you enter a URL such as https://leetcode.com/problems/design-tinyurl and it returns a short URL such as http ...
分类:
Web程序 时间:
2018-11-19 13:33:08
阅读次数:
213
#!/usr/bin/env python# -*- coding:utf-8 -*-import os def encryption(): str_raw = raw_input("请输入明文:") k = int(raw_input("请输入位移值:")) str_change = str_ra ...
分类:
编程语言 时间:
2018-11-18 22:30:21
阅读次数:
199
实现功能:用户在搜索框输入关键词,过滤出带有关键词的文章。 新闻模型如下: models.py 在前端html表单进行修改: {%csrf_token%}是django用来防御跨站请求伪造的机制。 从前端代码看到使用get方法,当用户提交搜索后,通过action找到相应的url进行跳转。 定义视图函 ...
分类:
其他好文 时间:
2018-11-18 21:04:49
阅读次数:
1219
structHeapTupleHeaderData{union{HeapTupleFieldst_heap;DatumTupleFieldst_datum;}t_choice;ItemPointerDatat_ctid;//uint16t_infomask2;/*numberofattributes+variousflags*/uint16t_infomask;/*variousflagbits,
分类:
数据库 时间:
2018-11-18 11:38:48
阅读次数:
215
1、引用模块 2、随机整数 3、随机浮点数 4、从列表中随机取元素 5、在一定范围内取数,c默认为空,若c有数值说明a,b之间按c得数值递增 6、随机打乱列表 7、从指定序列中随机获取指定元素 8、随机验证码 ...
分类:
编程语言 时间:
2018-11-17 16:11:43
阅读次数:
224
forms models views reg.html ...
分类:
其他好文 时间:
2018-11-16 20:47:05
阅读次数:
195