day1-小总结shell与python变量取多值区别时间:2022-12-12 16:44:18在shell脚本中a变量取多值表示如下: if [$a == 'Y'|'y'|'yes']; then 在python中a变量取多值表示如下: if a in ['Y','y','yes']: