Zzxy 发表于 2024-3-16 13:29

UnboundLocalError: cannot access local variable 'salary' where it is not asso...

在chrome爬取boss直聘时出现“UnboundLocalError: cannot access local variable 'salary' where it is not associated with a value”错误
我的代码
错误提示

我心飞翔1995 发表于 2024-3-16 16:34

你的选择分支导致salary没有定义就跳到print了,先全局定义一个salary,赋个初始值

Zzxy 发表于 2024-3-16 18:24

我心飞翔1995 发表于 2024-3-16 16:34
你的选择分支导致salary没有定义就跳到print了,先全局定义一个salary,赋个初始值

好的,谢谢,解决了
页: [1]
查看完整版本: UnboundLocalError: cannot access local variable 'salary' where it is not asso...