摘要:
1.python tcp server代码: 终端显示: 阅读全文
摘要:
1.如果有重载__iter__方法则表示类是一个Iterable 2.如果有重载__next__方法则表示类是一个Iterator 3.可以使用isinstance(obj, Iterable)和isinstance(obj, Iterator)来判断一个实例是否是Iterable和Iterator 阅读全文
摘要:
1.Python的生成器是一种特殊的迭代器 程序输出: 1 0 2 1 3 1 4 2 5 3 6 5 7 8 8 13 9 21 10 34 11 12 0 13 1 14 1 15 2 16 3 17 5 18 8 19 13 20 21 21 34 22 55 23 89 24 144 25 阅读全文
摘要:
1.关于ssh免密码登陆的ssh-keygen, ssh-copy-id的使用, 然后使用ssh-copy-id user@remote将公钥传给服务器, 以及别名 2.将Pycharm添加到xubuntu的快捷启动 或者打开pycharm,tools/create desktop entry... 阅读全文
摘要:
1.touch命令的使用 2.使用(cd -)可以在上次使用的目录来回切换 3.ls通配符的使用*代表任意字符和任意个字符, ?代表任意一个字符, [12345]中的任意一个字符, [1-5]中的任意一个字符. 4.ls的-h, -h, --human-readablewith -l and/or 阅读全文