Python-Core-50-Courses icon indicating copy to clipboard operation
Python-Core-50-Courses copied to clipboard

Python语言基础50课

Results 51 Python-Core-50-Courses issues
Sort by recently updated
recently updated
newest added

部分链接与之后的文字相连,导致跳转的网址中包含链接后文字,现对部分链接增加以便使用时跳转到正确的网址

修改了一行笔误代码,请查看。

由于每一节课markdown翻阅不方便,可以在每节课最后加上一课下一课翻阅功能!

存在问题:`def calc(*, init_value, op, *args, **kwargs):` 这条def语句明显是错误的,上文提及`*是一个分隔符,*前面的都是位置参数,而*后面的是是关键字参数`,*args就是接收任意多个位置参数。 解决方案:改为`def calc(*args, init_value, op, **kwargs):`,或者有其他更好的解决方案。