赞
踩
控制系统:
先根据题图,创建规则库(使用了一个文本文件)
if 有毛发 then 哺乳动物
if 有乳 then 哺乳动物
if 吃肉 then 食肉动物
if 有犬齿 and 有爪 and 眼向前方 then 食肉动物
if 哺乳动物 and 有蹄 then 有蹄类
if 哺乳动物 and 反刍动物 then 有蹄类
if 哺乳动物 and 食肉动物 and 黄褐色 and 暗斑点 then 豹子
if 哺乳动物 and 食肉动物 and 黄褐色 and 黑条纹 then 老虎
if 有蹄类 and 长脖子 and 长腿 and 暗斑点 then 长颈鹿
if 有蹄类 and 黑条纹 then 斑马
代码:
rules = {
} # 以字典形式存储规则
"""
读取规则库文件中规则,并存放在rules字典中
- 字典的键:前提
- 字典的值:结论
"""
def readRules(filePath):
global rules
for line in open(filePath, mode = 'r', encoding
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。