一、可迭代对象基于islice方法实现切片操作 二、islice实现实例: print(list(islice(range(1, 10), 2, 7, 2))) 三、自定义切片方法实现实例: def my_islice(iterable, start, end, step=1): tmp = 0 f ...
分类:
其他好文 时间:
2021-06-02 19:40:35
阅读次数:
0
My Dear Friend, Congratulations on your graduation from college! I am glad to hear that you plan on starting your career in China, and I would like to ...
分类:
其他好文 时间:
2021-06-02 19:29:05
阅读次数:
0
目前TCP正在努力的找工作中,原因如下: ①首先,作为下属(客户端)我想涨工资,但是我又不能明说,显得我low,但是又不能太过坚决,不然boss真的以为我要走了。于是我就发送了一份邮件,邮件主题叫FIN→内容:i want to go away,my-boss!but ,I can wait unt ...
分类:
其他好文 时间:
2021-06-02 19:18:47
阅读次数:
0
def my_decorator(txt=None): # 如果txt是str或int,则txt为带参修饰器 if isinstance(txt, (str, int)): def decorator(func): @wraps(func) def wrapper1(*args, **kwargs) ...
分类:
编程语言 时间:
2021-06-02 18:45:16
阅读次数:
0
Zsh中将全路径缩短为当前文件夹名 有时候经常嫌一层一层目录实在太长太占地方,而且截屏时也不方便把全路径显示出来。所以需要隐藏起来会比较方便,需要看全路径的话一句pwd就显示了。 默认全路径显示: 修改后效果: Zsh中,配置文件~/.zshrc里面可以配置DEFAULT_USER=$USER来隐藏 ...
分类:
其他好文 时间:
2021-06-02 15:45:41
阅读次数:
0
JS中类型转换有哪几种? 1. 转换成数字 2. 转换成布尔值 3. 转换成字符串 http://47.98.159.95/my_blog/015/type.jpg https://www.jianshu.com/p/7cb41d109b7e https://www.cnblogs.com/xiao ...
分类:
Web程序 时间:
2021-06-02 15:03:22
阅读次数:
0
Thanks for posting these tips. I was devastated when my project dropped to 3 FPS because material properties don't work out of the box. I was able to ...
分类:
其他好文 时间:
2021-06-02 12:56:58
阅读次数:
0
python3的divmod()内置函数 首先,函数的名字div 表示地板除法 5//2 = 2; mod表示取余数 5%2=1 所以divmod()函数:接收两个数字类型(非复数)参数,返回一个包含商和余数的元组(a // b, a % b) 举例子: def my_divmod(a: int , ...
分类:
其他好文 时间:
2021-06-02 12:46:20
阅读次数:
0
1.基本使用指南2.EndNote的安装1.EndnoteX9安装2.EndNoteX20安装1.基本使用指南打开 EndNote,首先需要新建文献数据库文件,File- New- 选择文件夹,如下图所示:建议使用:My Researchs Library 进行命名如何进行检索?如何切换数据库?如何... ...
分类:
其他好文 时间:
2021-06-02 11:54:51
阅读次数:
0
1、为了重复使用CSS,例子如下: .my-inline-block() { display: inline-block; font-size: 0; } .thing1 { .my-inline-block; } .thing2 { .my-inline-block; } 注:来自less的官网h ...
分类:
其他好文 时间:
2021-06-02 10:39:59
阅读次数:
0