zoukankan      html  css  js  c++  java
  • python code

    code co_argcount number of arguments (not including * or ** args)                     参数个数(不包括* 和**)  
      co_code string of raw compiled bytecode                                             二进制代码的原始字符串  
      co_consts tuple of constants used in the bytecode          常量元组  
      co_filename name of file in which this code object was created                 代码所在的文件  
      co_firstlineno number of first line in Python source code                              python第一行源代码所在的行号  
      co_flags bitmap: 1=optimized | 2=newlocals | 4=*arg | 8=**arg  
      co_lnotab encoded mapping of line numbers to bytecode indices  
      co_name name with which this code object was defined                      代码对象的名称  
      co_names tuple of names of local variables                                           局部变量的元组  
      co_nlocals number of local variables                                                      局部变量的数量  
      co_stacksize virtual machine stack space required                                    所需的 virtual machine stack 空间  
      co_varnames tuple of names of arguments and local variables                  参数和局部变量的名称元组
  • 相关阅读:
    字符串的操作
    10.20 整理1
    if else; while; break;continue ----流程控制系列
    10.19 重新打了第一天的代码(课件))
    10.17
    svn,导入数据到版本库及使用工作副本
    mysql的反引号backtick
    css中的1px并不等于设备的1px
    onclick事件属性与在用js绑定onclick事件中的this的区别
    一次对CI框架update方法底层实现的探索之旅
  • 原文地址:https://www.cnblogs.com/olivetree123/p/4704361.html
Copyright © 2011-2022 走看看