Äquivalentes Schreiben von code.co_kwonlyargcount in Python2
天蓬老师
天蓬老师 2017-05-24 11:35:02
0
2
651

Angenommen, es gibt einen Code wie diesen:

>>> def add (x,y):
...     return x + y
... 
>>> c = add.__code__

Für Python3 können wir den Schlüsselwortparameter auf 0 setzen. c.co_kwonlyargcount Wie man für Python2 äquivalente Schreibweisen implementiert und die Anzahl der entsprechenden Schlüsselwortparameter erhält.

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

Antworte allen(2)
滿天的星座

https://docs.python.org/2/lib...

淡淡烟草味

python2和python3的参数数量获取不一样:

def add(x, y):
    return x + y
    
python2:
c = add.func_code
c.co_argcount

python3:
c = add.__code__
c.co_argcount
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage