标签:源文件 sort sorted code 代码 print 源代码分析 this 检测
请列举你所知道的Python代码检测工具及他们间的区别?
pylint :源代码分析器,可以分析python代码中的错误 pyflakes : 检查源文件错误的简单程序,不会检查代码风格。
有一个list["This","is","a","Boy","!"], 所有元素都是字符串, 对他进行大小写无关的排序c
#有一个list["This","is","a","Boy","!"], 所有元素都是字符串, 对他进行大小写无关的排序c list = ["This","is","a","Boy","!"] print(sorted(list)) #输出:[‘!‘, ‘Boy‘, ‘This‘, ‘a‘, ‘is‘]
标签:源文件 sort sorted code 代码 print 源代码分析 this 检测
原文地址:https://www.cnblogs.com/ljy123/p/12635211.html