Python 正则表达式的逻辑 NOT 运算符
我尝试在网上搜索这个答案,但没有找到任何运气。我想知道 python 是否支持其他语言中的 if 语句或任何控制语句的逻辑非运算符(通常是“!”)。例如,我正在寻求实现此功能。
if !(re.search('[0-9]', userInputVariable):
fix error and report to user
...Proceed with rest of code...
基本上,如果用户不输入数字,我会将其更正为默认值并继续执行脚本,
谢谢!
I tried searching for this answer online but I haven't found any luck. I am wondering if python supports a logical not operator (usually '!') in other languages for an if statement, or any control statement really. For example, I am looking to achieve this functionality.
if !(re.search('[0-9]', userInputVariable):
fix error and report to user
...Proceed with rest of code...
Where basically if the user does not input a number I correct it to a default value and proceed with script
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找
not
运算符。但这不是检查号码的方式。
...
You're looking for the
not
operator.But that's not how you check for a number.
...