上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 37 下一页
摘要: 先看看多少代码量 import os file_types = ['py', 'html', 'css', 'js', ] def count_code_nums(file): """获取单个文件的行数 """ with open(file, mode='rb') as f: return len( 阅读全文
posted @ 2021-03-27 08:48 该显示昵称已被使用了 阅读(104) 评论(0) 推荐(0) 编辑
摘要: import os file_type = ['py', 'html', 'css', 'js', ] def count_code_nums(file): """获取单个文件的行数 """ with open(file, mode='rb') as f: return len(f.readline 阅读全文
posted @ 2021-03-27 08:28 该显示昵称已被使用了 阅读(199) 评论(0) 推荐(0) 编辑
摘要: https://www.runoob.com/w3cnote/python-yield-used-analysis.html 演进 yield 的作用就是把一个函数变成一个 generator,带有 yield 的函数不再是一个普通函数,Python 解释器会将其视为一个 generator,调用 阅读全文
posted @ 2021-03-26 15:30 该显示昵称已被使用了 阅读(101) 评论(0) 推荐(1) 编辑
摘要: 也可以直接安装谷歌插件(Table of contents sidebar) <script type="text/javascript" src="https://table-of-contents-sidebar.github.io/table-of-contents-sidebar-lib/t 阅读全文
posted @ 2021-03-17 14:01 该显示昵称已被使用了 阅读(102) 评论(0) 推荐(0) 编辑
摘要: # 设置默认的编辑器 EDITOR=vim; export EDITOR # 创建crontab 文件,名字随意 vim davecron 15 23 * * * /Users/mi/Desktop/java.sh # 将文件提交给cron进程 crontab davecron # 查看 cront 阅读全文
posted @ 2021-03-15 21:57 该显示昵称已被使用了 阅读(282) 评论(0) 推荐(0) 编辑
摘要: # 1 sudo visudo 或者 sudo vi /etc/sudoers # 2 将%admin ALL=(ALL) ALL 替换为 %admin ALL=(ALL) NOPASSWD: ALL 阅读全文
posted @ 2021-03-15 21:43 该显示昵称已被使用了 阅读(150) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash ps -ef | grep pycharm | awk '{print $2}' | xargs kill -9 阅读全文
posted @ 2021-03-15 21:36 该显示昵称已被使用了 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 快捷键 # 对应关系 ⌘——Command(对应window的Win) ⌥——Option (对应window的alt) ⌃ ——Control ctrl键 ⇧——Shift # 进入对应界面 1. U盘启动(用有线大键盘,不要蓝牙小键盘) 开机后一直按住Alt(option)按键 2. 恢复模式( 阅读全文
posted @ 2021-03-13 14:31 该显示昵称已被使用了 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 说明 默认情况下,NTFS格式的移动硬盘copy到mac是可以的,mac不能copy到移动硬盘 解决方法 https://www.zhihu.com/question/19571334/answer/224291746 1. 打开终端(Terminal) 2. sudo -s # 切换到root 3 阅读全文
posted @ 2021-03-13 13:53 该显示昵称已被使用了 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 卸载原来的java # 查看当前安装目录 /usr/libexec/java_home -V # 删除 sudo rm -rf /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin/ sudo rm -rf /Library/PreferencePa 阅读全文
posted @ 2021-03-13 12:32 该显示昵称已被使用了 阅读(132) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 37 下一页