发布网友 发布时间:2022-04-19 21:21
共3个回答
热心网友 时间:2023-09-06 09:13
def root(x):
class SystemError(BaseException):pass
if not ((x is '0-9') or (x is 'a-f') or (x is 'A-f')):
raise SystemError
或者正则表达式
def root(x):
import re,sys
if not (re.findall('[0\-9|a\-f|A\-F]',x)):
raise sys.exit()
如果用户输入是上面的字符就不做处理,如果不是,则引发错误结束
热心网友 时间:2023-09-06 09:14
import re
热心网友 时间:2023-09-06 09:14
and