摘要:
最简单,但是有缺点 var city = document.getElementById('city'); city.innerHTML +="<li>广州</li>>"; // 原来的city和下面的li会全部受影响,原来绑定到他们的方法可能会失效 折中的方法 var city = documen 阅读全文
摘要:
先看看run case的流程 阅读全文
摘要:
先看看多少代码量 import os file_types = ['py', 'html', 'css', 'js', ] def count_code_nums(file): """获取单个文件的行数 """ with open(file, mode='rb') as f: return len( 阅读全文
摘要:
import os file_type = ['py', 'html', 'css', 'js', ] def count_code_nums(file): """获取单个文件的行数 """ with open(file, mode='rb') as f: return len(f.readline 阅读全文