python 格式 缩进 python 缩进格式保持一致、用四个空格 notepad将tab替换为空格 显示tab和空格的区别 显示效果如下: ...
分类:
编程语言 时间:
2020-06-10 12:59:06
阅读次数:
79
strlen($str);//返回字符串长度 mb_strlen($str) 可以返回中文字符长度; strtolower($str);//字母转小写 strtoupper($str);//字母转大写 ucwords($str);//每一个单词的首字母转大写 ucfirst($str);//首字母转 ...
分类:
Web程序 时间:
2020-06-10 11:13:17
阅读次数:
90
原本这只是一个用html编写的干瘪难看的表格: <body> <h1>创建一个3*3的表格</h1> <table> <tr> <!--th和td都是单元格,th里的内容会默认加粗并且居中 --> <th>表头1</th> <th>表头2</th> <th>表头3</th> <th>表头4</th> ...
分类:
Web程序 时间:
2020-06-10 00:00:33
阅读次数:
114
地址 https://leetcode-cn.com/problems/integer-replacement/ 给定一个正整数 n,你可以做如下操作: 1. 如果 n 是偶数,则用 n / 2替换 n。 2. 如果 n 是奇数,则可以用 n + 1或n - 1替换 n。 n 变为 1 所需的最小替 ...
分类:
其他好文 时间:
2020-06-09 23:42:46
阅读次数:
76
目录 一、概述 二、7个设计原则 1、单一职责原则 ( SRP ) 2、开闭原则 ( OCP ) 3、里氏替换原则 ( LSP ) 4、依赖倒置原则 ( DIP ) 5、接口隔离原则 ( ISP ) 6、最少知道原则(迪米特原则) 7、合成/聚合复用(CARP) 三、创建型模式 ( 5种 ) 1.单 ...
分类:
其他好文 时间:
2020-06-09 23:22:59
阅读次数:
77
What happened? MGM movie and song producer. Similar peer to peer program as Napster, illegal distribution of copyrighted movies and songs. Grokster tr ...
分类:
其他好文 时间:
2020-06-09 23:22:41
阅读次数:
104
1.获取某字符串中汉字的个数 1 ... 2 private int getChineseCount(String text) { 3 String Reg = "^[\u4e00-\u9fa5]{1}$";// 正则 4 int result = 0; 5 for (int i = 0; i < ...
分类:
编程语言 时间:
2020-06-09 20:55:33
阅读次数:
60
假设我们定义了一个变量为: file=/dir1/dir2/dir3/my.file.txt 可以用${ }分别替换得到不同的值: ${file#*/}:删掉第一个 / 及其左边的字符串:dir1/dir2/dir3/my.file.txt ${file##*/}:删掉最后一个 / 及其左边的字符串 ...
分类:
系统相关 时间:
2020-06-09 18:50:34
阅读次数:
74
首先安装xadmin,pipinstallxadmin,或者下载放到项目根目录都可以,直接运行会报错,主要因为Django中six包已经移除,使用独立的第三方包。需要改的地方有:requirements.txt中django-formtools==2.2需要升级到2.2版本,2.1版本会报错根目录下sites.py中需要替换fromdjango.utilsimportsix==>import
分类:
其他好文 时间:
2020-06-09 18:48:24
阅读次数:
97
1.连接操作符 select '姓名为'|| ename||'工作为'||'job'||'工资为'|| sal as info from emp 2.将字符串转为小写 select lower(ename)as name from emp 3.逐值替换 select decode(deptno,'1 ...
分类:
数据库 时间:
2020-06-09 15:01:59
阅读次数:
94