首页 热点资讯 义务教育 高等教育 出国留学 考研考公

python 如何让用户只能输入指定字符

发布网友 发布时间: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

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com