Wikipedia Category Tree 生成以指定类别为根的类别树的Python程序
Wikipedia-Category-Tree 是一个 Python 程序,用于生成以给定类别为根的 类别树。
程序要求如下:
-
category_name :研究的类别,这将构成类别树的根。
-
depth :该参数决定类别树的深度。
-
output_file :输出将生成在此文件中,格式为邻接表示。
程序使用方法示例如下:
python categoryTree.py category_name depth output_file
例子:
python categoryTree.py Linear_algebra 1 cat_tree.txt
category_name :线性代数
深度 :1
输出文件 :cat_tree.txt
生成的输出内容格式如下:
cat_tree.txt
Linear_algebra: 线性代数中的定理, 凸几何, 行列式, 不变子空间, 线性算子, 矩阵
以上为程序生成类别树的示例。"
用户评论