码迷,mamicode.com
首页 >  
搜索关键字:am    ( 1985个结果
python字符串常用操作
今天把之前遗漏的内容补上,关于python字符串的基本操作 name="my \tname is {name},and I am {year} old"print(name)print(name.capitalize())print(name.count("n"))#查看字符数量print(name ...
分类:编程语言   时间:2020-02-11 14:48:36    阅读次数:58
OpenCV--图像金字塔
图像金字塔 高斯金字塔 高斯金字塔:向下采样方法(缩小) 高斯金字塔:向上采样方法(放大) img=cv2.imread("AM.png") cv_show(img,'img') print (img.shape) 效果: up=cv2.pyrUp(img) cv_show(up,'up') pri ...
分类:其他好文   时间:2020-02-10 18:14:56    阅读次数:69
核心过去式/过去完成时Past tense / past perfect
动词过去式 常规 do - did - done be/am/is/are - was/were - been will - would can - could shall - should may - might have(has)— had—had 日常 看 look - looked - lo ...
分类:其他好文   时间:2020-02-09 14:40:39    阅读次数:91
ES6中map数据结构
### ``` key值可以任意值或对象,value值可以是任意值或对象 let json={ name:'eternity', skill:'java' }; let map=new Map(); map.set(json,'I am'); console.log(map); map.set('z... ...
分类:其他好文   时间:2020-02-07 12:34:19    阅读次数:70
GO类型转换
golang []byte转string golang中,字符切片[]byte转换成string最简单的方式是 package main import ( "fmt" _ "unsafe" ) func main() { bytes := []byte("I am byte array !") st ...
分类:其他好文   时间:2020-02-07 11:15:39    阅读次数:93
python类和函数拾遗——继承、bif(内置函数)、魔法方法
函数在创建时有一些内置的方法,特殊情况下会使用到。一般被称为魔法方法 在此之前先记录一下类的进阶方法: class Fish(): def hello(self): print("Hello! I am a fish!") class Shark(Fish): def eat(self): prin ...
分类:编程语言   时间:2020-02-04 00:06:17    阅读次数:107
剑指Offer对答如流系列 - 翻转字符串
面试题58:翻转字符串 问题描述 问题(1) 翻转单词顺序 输入一个英文句子,翻转句子中单词的顺序,但单词内字符的顺序不变。为简单起见,标点符号和普通字母一样处理。 例如输入字符串"I am a student. ",则输出"student. a am I"。 问题(2)左旋转字符串 字符串的左旋转 ...
分类:其他好文   时间:2020-02-01 19:15:35    阅读次数:112
Codeforces Trainning Plan
Hey Guys I am back to my path of training, I am currently studying at UNSW and i am preparing to do ACM-ICPC in my uni life. I will be recording my tr ...
分类:其他好文   时间:2020-01-28 21:06:35    阅读次数:69
Web信息安全实践_5. 点击劫持(click hijacking)
如果在iframe中引用了其他来源的页面,当前网站的JS不能控制iframe中的元素。 <iframe id='myIFrame' src = 'x1.html' onload="fun1()"></iframe> <p id='2'>I am 2.html.</p> <p id='p'>hello ...
分类:Web程序   时间:2020-01-27 15:37:50    阅读次数:447
安卓_1_几个命令
1.adb shell am start -S -W -n appname 2.adb shell am force-stop packagename 3.adb shell input keyevent 4.adb shell dumpsys cpuinfo | grep packagename ...
分类:移动开发   时间:2020-01-23 15:34:41    阅读次数:97
1985条   上一页 1 ... 14 15 16 17 18 ... 199 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!