摘要:
检查数据的边界,留意有没有最后一个数据 阅读全文
摘要:
按照某一规定排序 博客 sorted(student_tuples, key=itemgetter(2), reverse=True) 字典按值排序 >>> dict = {'a':1, 'b':300, 'c':2} >>> dict.items() dict_items([('a', 1), ( 阅读全文
摘要:
文件名中的特殊字符() shell lxq@PC:~/Desktop$ vim ll(ll).txt bash: syntax error near unexpected token `(' bash会把括号里面的内容当成命令,优先执行。 解决:给文件名加上引号,双引号、单引号都可以 `lxq@PC 阅读全文