最新 最热

python扩展

补充一些有趣的知识1. sys模块方法的补充,打印进度条import sys,timefor i in range(20): sys.stdout.write("#") sys.stdout.flush() time.sleep(0.1) 2. 实现简单的shell sed替换功能i......

2020-01-16
1

python之dict与set

dict全称dictionary,使用键-值(key-value)存储,书写一个dict

2020-01-15
1

Flask send_file requ

send_file:send_file(filename_or_fp,mimetype=None, as_attachment=False,attachment_filename=None, add_etags=True,cache_timeout=None, conditional=False, l...

2020-01-15
1

Python文件读写

#文件操作,创建文件对象,通过open()函数创建文件对象mode:代表文件要执行的操作的类型r:读模式w:写模式(每次写入文件之前都会先将文件中的内容清空,之后重新写入)a:添加模式(每次写入文件时,不会清空文件内容)...

2020-01-15
1

python 高级特性:List Comprehensions

#common establish waylis1 = [];for x in range(1, 10):    lis1.append(x);print "lis1:", lis1;

2020-01-14
1

07-Ansible循环

循环语句列表迭代展开列表- hosts: all remote_user: root tasks: - name: install {{ item }}yum: name={{ item }} state=latest#安装下列所有包 with_items: - maria...

2020-01-14
1

python xml.etree.El

We have a number of ways to import the data. Reading the file from disk:

2020-01-14
1

MacOS 10.15: 修正typora无法输入问题

前言最近把系统更新到了10.15,发现 typora 没法输入了,一开始以为是 typora 的 bug,慢慢坐等更新,放了一个月,更新了 typora 推送的版本也无效。这就没法接受了!!必...

2020-01-14
1

unix基础教程3 通信

1、内部通信系统 2、外部通信系统 3、即时通讯 1)交谈命令write(须在线) write username [terminal] $write npp 终端号 (多人同时登录时) $write npp ... ctrl+d (结束) 消息发送结束用o(结束) 结束谈话用oo(结束并退出) ......

2020-01-14
1

ns3 introduce

Now you can find this file to be written in English .The following are reasons:    First,the ns3 simulator is a very new simulator,so there are a few pe...

2020-01-10
1