str可以支持很多方法,也像一个list那样可以通过下标访问,但是要注意,python中的str是不可变的变量类型,也就是说很多看起来修改了字符串的操作只不过是又产生了一个副本罢了,如果不将这个副本使用,str变量本身不会有任何变化。 s = 'i am you' s.capitalize() pr ...
分类:
编程语言 时间:
2020-05-11 01:19:09
阅读次数:
80
Python 改变字符串大小写的方法如下: capitalize() 字符串首字母大写,其余字母小写。 title() 字符串中每个单词的首字母大写,其余字母小写,非字母后的第一个字母将转换为大写字母 upper() 全部字母大写 lower() 全部字母小写 应用如下: str = "i am a ...
分类:
编程语言 时间:
2020-05-09 21:00:37
阅读次数:
71
There are lots of "tutorials" about promise in the internet. Recently I am studying the frontend code of SAP Cloud for Customer and I come across a re ...
分类:
其他好文 时间:
2020-05-07 22:58:06
阅读次数:
71
CanChen ggchen@mail.ustc.edu.cn Recently I am following Optimization lectured by Prof.Zhouwang Yang at USTC. Opt lies at the heart of ML. Why I choose ...
分类:
其他好文 时间:
2020-05-05 10:58:38
阅读次数:
47
Background of this Blog For several CRM projects in China which I am involved, I found the partner have chosen ABAP webdynpro when custom development ...
分类:
Web程序 时间:
2020-05-04 13:26:42
阅读次数:
81
线性回归 下面是线性回归的公式推导,没有加上 L2 正则化因子。 假设 y^=Xw\hat y = Xwy^?=Xw,因为 L(w)=∣∣y^?y∣∣22=∣∣Xw?y∣∣22=(Xw?y)T(Xw?y)=wTXTXw?yTXw?wTXTy+yTy, \begin{aligned} L(w) &am ...
分类:
其他好文 时间:
2020-05-02 14:49:35
阅读次数:
94
[root@localhost frr-stable-7.3]# make true make all-am make[1]: Entering directory `/root/frr/frr-stable-7.3' CLIPPY bgpd/bgp_debug_clippy.c /bin/sh: ...
分类:
其他好文 时间:
2020-04-20 15:45:35
阅读次数:
83
效果图片: : 代码(里面有调试留下的代码,例如注释,System.out.println())的代码可省略,这样可以减少代码量(这里我就不去除了,I am lazy.)hahahaha: 一共三个类: ① public class Body { int x; int y; public Body( ...
分类:
编程语言 时间:
2020-04-19 12:31:56
阅读次数:
97
自然语言。 语言: 主谓宾 ! I am sorry 我是谁。? 陈述句: 主谓宾 (听语) 帮我找人 祈使句:please DO IT 疑问句:你是谁?——这是谁的? 你是他吗? who are U ...
分类:
其他好文 时间:
2020-04-18 15:28:34
阅读次数:
52
字符串格式化:将字符串以自己想要的格式进行拼接 msg="i am %s my hobby is alex" %"yxz" # %s 代表一个表示符,后面的%”yxz“代表传入的值 print(msg) #输出结果为 i am yxz my hobby is alex msg1="i am %s m ...
分类:
其他好文 时间:
2020-04-18 13:38:17
阅读次数:
90