欢迎各位兄弟 发布技术文章
这里的技术是共享的
docker运行的镜像无法上网解决办法
无法上网一般是iptables的问题,是启动docker后iptables -F 的结果.
解决方法,shutdown -r now 即可解决/
python:
意外的逗号
>>> def f(x, y,):
... print(x, y)
...
>>> def g(x=4, y=5,):
... print(x, y)
...
>>> def h(x, **kwargs,):
File "<stdin>", line 1
def h(x, **kwargs,):
^
SyntaxError: invalid syntax
>>> def h(*args,):
File "<stdin>", line 1
def h(*args,):
^
SyntaxError: invalid syntax
双击查看原图 说明:
在Python函数的形式参数列表中, 尾随逗号并不一定是合法的.
在Python中, 参数列表部分用前置逗号定义, 部分用尾随逗号定义. 这种冲突导致逗号被夹在中间,
注意: 尾随逗号的问题已经在Python 3.6中被修复了