• 编译原理实验--实验一 词法分析--Python实现


    目录

    一、实验目的

    二、实验内容

    三、实验环境

    四、实验步骤

    五、测试要求

    六、实验步骤

    1、单词表<列出所识别语言的所有单词及其种别编码>;

    2、识别单词的DFA图<可选择1-2类单词,给出识别该单词的DFA图>

    3、关键代码

    七、实验结果与分析


    一、实验目的

    通过编写词法分析程序,熟悉其识别单词的基本思想及构造方法。

    二、实验内容

        编制一个读单词过程,从输入的源程序中,识别出各个具有独立意义的单词,即基本保留字、标识符、常数、运算符、分隔符五大类。并依次输出各个单词的内部编码及单词符号自身值。(遇到错误时可显示“Error”,并输出该字符,然后跳过该字符继续识别)。

    三、实验环境

    处理器     AMD Ryzen 7 5800H with Radeon Graphics3.20 GHz

    机带RAM   16.0 GB(13.9 GB可用)

    Win10家庭版20H2 X64  

    PyCharm 2012.2

    Python 3.10

    四、实验步骤

    1、确定所要识别的程序语言的单词表,各单词的分类及其种别编码;例如教材P66表3.1。

    2、画出识别该语言所有单词的确定有限自动机;可分开画,例如教材P90-91图3.9/3.10/3.12分别是识别关系运算符、标识符和关键字、无符号整数的DFA。简单的语言也可集中画在一张图,例如P93图3.15。

    3、根据DFA构造该语言的词法分析程序,开发工具可自行选择。(可参考P104-105)

    4、测试。

    五、测试要求

        将被分析的程序即测试程序作为词法分析程序的输入,结果应是按先后顺序输出组成该被分析程序的各个单词的二元式形式。(说明:每个词法分析器输出的二元式不相同,因为它有自己的单词表和种别编码,因此在实验步骤1时要明确)

    例如: P67  例3-1

    六、实验步骤

    1、单词表<列出所识别语言的所有单词及其种别编码>

    ①使用Python中的关键字、内置函数名、运算符号、界符

    ②使用split函数将输入的内容根据空隔分割

    ③将分割后的结果存入List列表

    ④List列表中的每一项与①中内容循环匹配

    1. # 关键字
    2. key_word = ['False', 'None', 'True', 'and', 'as', 'assert', 'async', 'await', 'break', 'class', 'continue', 'def',
    3. 'del', 'elif', 'else', 'except', 'finally', 'for', 'from', 'global', 'if', 'import', 'in', 'is', 'lambda',
    4. 'nonlocal', 'not', 'or', 'pass', 'raise', 'return', 'try', 'while', 'with', 'yield']
    5. # 运算符
    6. operator = ['+', '-', '*', '/', '%', '**', '//', # 算术运算符
    7. '==', '!=', '>', '<', '>=', '<=', # 关系运算符
    8. '&', '|', '^', '~', '<<', '>>', # 位运算符
    9. 'and', 'or', 'not', # 逻辑运算符
    10. 'in', 'not in', # 成员运算符
    11. 'is', 'is not', # 身份运算符
    12. '=', '+=', '-=', '*=', '/=', '%=', '**=', '//=', # 赋值运算符
    13. ]
    14. # 界符
    15. separator = ['{', '}', '[', ']', '(', ')', '.', ',', ':', ';']
    16. # 已有内置函数名
    17. key_func_word = ['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EncodingWarning', 'EnvironmentError', 'Exception', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'ModuleNotFoundError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopAsyncIteration', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'aiter', 'all', 'anext', 'any', 'ascii', 'bin', 'bool', 'breakpoint', 'bytearray', 'bytes', 'callable', 'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', 'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', 'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', 'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', 'zip']

    2、识别单词的DFA图<可选择1-2类单词,给出识别该单词的DFA图>

    3、关键代码

    1. #!/usr/bin/env python
    2. # -*- coding: utf-8 -*-
    3. # @Time : 2021/11/29 2:42
    4. # @Author : LanXiaoFang
    5. # @Site :
    6. # @File : exper_1_CiFaFenXi.py
    7. # @Software: PyCharm
    8. import keyword
    9. import builtins
    10. print("--------实验一 词法分析器----------",)
    11. # 查看Python关键字 35个
    12. # print(keyword.kwlist, len(keyword.kwlist))
    13. # print(keyword.iskeyword('print'),) #判断传递的内容是否是关键字
    14. # 查看此版本的Python的内置函数 156个
    15. # print(dir(builtins), len(dir(builtins)))
    16. # 本打算用这一部分识别是否是正确的英文单词,再判断是否属于关键字
    17. # import enchant
    18. # d = enchant.Dict("en_US")
    19. # d.check("Helo")
    20. # for i in key_word:
    21. # print(i, d.check(i))
    22. str = input("您可以输入任意想要做词法分析的内容,以空格隔开,如果退出分析可输入##:")
    23. print(str)
    24. while str != '##':
    25. str_list = str.split()
    26. print("以空格分割内容后存入列表:", str_list, "列表长度是:", len(str_list))
    27. i = 0
    28. while i < len(str_list):
    29. # 判断是否是整数
    30. str_list_i = str_list[i]
    31. result_stri = str_list_i.isdigit()
    32. if result_stri:
    33. print(str_list_i, "是整数")
    34. i = i + 1
    35. continue
    36. # 判断是否是小数
    37. str_list_i = str_list[i]
    38. if str_list_i.count('.') == 1:
    39. str_list_i_left = str_list_i.split('.')[0]
    40. str_list_i_right = str_list_i.split('.')[1]
    41. if str_list_i_right.isdigit():
    42. if str_list_i_left.count('-') == 1 and str_list_i_left.startswith('-'):
    43. str_list_i_left_num = str_list_i_left.split('-')[-1]
    44. if str_list_i_left_num.isdigit():
    45. print(str_list_i, "是负小数")
    46. elif str_list_i_left.isdigit():
    47. print(str_list_i, "是正小数")
    48. i = i + 1
    49. continue
    50. # 判断是否是纯字母
    51. result_stri = str_list_i.isalpha()
    52. if result_stri:
    53. if keyword.iskeyword(str_list_i):
    54. print(str_list_i, "属于Python关键字")
    55. elif str_list_i in key_func_word:
    56. print(str_list_i, "属于内置函数名")
    57. else:
    58. print(str_list_i, "是字母字符串,但不是Python关键字、内置函数名")
    59. i = i + 1
    60. continue
    61. # 判断是否是字母和数字的组合
    62. result_stri = str_list_i.isalnum()
    63. if result_stri:
    64. print(str_list_i, "是字母和数字的组合")
    65. i = i + 1
    66. continue
    67. # 不是字母字符串也不是数字也不是字母和数字的组合的情况
    68. if str_list_i in operator:
    69. print(str_list_i, "属于运算符")
    70. elif str_list_i in separator:
    71. print(str_list_i, "属于分界符")
    72. elif str_list_i in key_func_word:
    73. print(str_list_i, "属于内置函数名")
    74. else:
    75. print(str_list_i, "不属于关键字、运算符、分界符、内置函数名")
    76. i = i+ 1
    77. str = input("您可以输入任意想要做词法分析的内容,以空格隔开,如果退出分析可输入##:")
    78. print(str)
    79. print("------------------------")

    七、实验结果与分析

    1、给出实验测试用例程序,即用步骤1中规定的语言编写的程序,该程序作为词法分析程序的输入,用于测试词法分析程序是否能正确地识别每个单词;

    2、所给测试用例程序要全面,即该测试程序既要包含该语言的各类单词,又要有错误的单词或符号,当出现错误时是否能报错,报错信息是否准确。

                   3、记录测试的结果。

                   4、若词法分析的输出不正确则分析原因)

           要求:每位同学的测试用例必须不同

  • 相关阅读:
    设计模式学习(四):建造者模式
    探索机器学习——构建简单的线性回归模型
    基于ffmpeg给视频添加时间字幕
    掌握Golang匿名函数
    “一键导出,高效整理:将之前的部分记录导出!“
    VBM计算操作过程记录
    MySQL|子查询
    ChatGPT plus 的平替:9个可以联网的免费AI搜索引擎
    [数据集][目标检测]脑溢血检测数据集VOC+YOLO格式767张2类别
    ModuleNotFoundError: No module named ‘pycocotools‘解决办法
  • 原文地址:https://blog.csdn.net/c_lanxiaofang/article/details/127996919