python的语法规范非常重要,简洁明了是python的特性,以下是python语法的一些说明
unicode(utf-8)
import keyword
print(keyword.kwlist)
查询结果
['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def', 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda', 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
Tips:python作为解释性动态语言,很多情况下代码安全需要程序员自己检查,而JAVA和C等静态型语言,这些问题会在编译时被检查出来
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/165089.html原文链接:https://javaforall.cn