一 过滤器写法 {{ message | Filter}} 二 Vue自带的过滤器:capitalize 功能:首字母大写 上面代码输出:Abc 三 Vue自带的过滤器:uppercase 功能:全部大写 上面代码输出:ABC 四 Vue自带的过滤器:uppercase 功能:全部小写 上面代码输出 ...
分类:
其他好文 时间:
2018-05-05 11:23:13
阅读次数:
186
一 过滤器写法 {{ message | Filter}} 二 Vue自带的过滤器:capitalize 功能:首字母大写 上面代码输出:Abc 三 Vue自带的过滤器:uppercase 功能:全部大写 上面代码输出:ABC 四 Vue自带的过滤器:uppercase 功能:全部小写 上面代码输出 ...
分类:
其他好文 时间:
2018-05-05 11:22:57
阅读次数:
154
一 过滤器写法 {{ message | Filter}} 二 Vue自带的过滤器:capitalize 功能:首字母大写 上面代码输出:Abc 三 Vue自带的过滤器:uppercase 功能:全部大写 上面代码输出:ABC 四 Vue自带的过滤器:uppercase 功能:全部小写 上面代码输出 ...
分类:
其他好文 时间:
2018-05-05 11:14:13
阅读次数:
199
[抄题]: A sentence S is given, composed of words separated by spaces. Each word consists of lowercase and uppercase letters only. We would like to conve ...
分类:
其他好文 时间:
2018-04-30 23:31:31
阅读次数:
695
1.keyword https://www.cnblogs.com/pachongshangdexuebi/p/7201983.html Convert To Lowercase/Convert To Uppercase 用法:[ string ],字符串中字符全转为小写/大写 Decode Byt ...
分类:
其他好文 时间:
2018-04-28 14:13:45
阅读次数:
189
[抄题]: Given a string which consists of lowercase or uppercase letters, find the length of the longest palindromes that can be built with those letters ...
分类:
其他好文 时间:
2018-04-25 22:09:20
阅读次数:
159
内置函数小结 内建函数,Python内置的函数(build in function),不需要引用其他包,一般成为BIF abs() 计算绝对值,abs(-10),接收number,返回一个number max() 求序列的的最大值(可迭代的),同时也可以比较一些数字 min() 求序列的最小值(可迭 ...
分类:
其他好文 时间:
2018-04-22 16:33:07
阅读次数:
199
主要是对用到的函数进行简要总结并提供简单示例 1 //输入输出流的深入剖析 2 //头文件 3 #include 4 #include 5 char 6 wchar_t 7 char16_t 8 char32_t 9 cin.get()//返回输入流中的下一个字符 10 cin.get(x)//将输... ...
分类:
其他好文 时间:
2018-04-20 22:08:16
阅读次数:
152
1、你输入几,文件里面就给你产生多少条密码 2、密码必须包括,大写字母、小写字母、数字、特殊字符 3、密码不能重复 4、密码都是随机产生的 5、密码长度6-11 import string,random upperStr = string.ascii_uppercase lowerStr = str ...
分类:
编程语言 时间:
2018-04-11 18:05:00
阅读次数:
291
写在最前面http://www.runoob.com/python3/python3-string.html,因为这个比较系统讲解,自学跟着讲师走的时候,顺便看一下详细的书籍可以更好掌握。以下内容为个人笔记。 今天通过PyCham 新建一个.py的新文件输入 str,然后按住Ctrl鼠标点击str, ...
分类:
其他好文 时间:
2018-04-09 23:00:50
阅读次数:
169