Key

Assert

https://blog.csdn.net/shijichao2/article/details/61421735

  • python 的 Assert 用法相当于 if not STATEMENT, raise AssertionError
  • 我理解的 Assert 相当于不用(想)做异常处理时保证代码能够跑起来的一种方法

args, *kwargs

https://blog.csdn.net/u010758410/article/details/71727822

启动pycharm中的python console报错,错误提示如上,原因是ipython版本过高,卸载后安装指定版本即可

  1. pip install ipython==6.2.0