TypeError: unlink() got an unexpected keyword argument 'missing_ok',请问各位大佬这样的错误怎么解决?
https://blog.csdn.net/weixin_42768004/article/details/108518448
参考一下
传入参数过多,检查一下函数需要多少参在传入,最好能附上你报错的代码,这样能更快解决你的问题
Python3.8以下unlink没有此参数,升级到3.8以上才能使用这个参数,参考:
https://stackoverflow.com/questions/68668895/when-i-run-the-code-it-says-typeerror-unlink-got-an-unexpected-keyword-argum
请问你用什么方法解决了嘛?