用Python 做成语接龙,超简单,有语音,过年和孩子玩

用Python 做成语接龙,超简单,有语音,过年和孩子玩

成语

需要准备的资料:
idiom.json文件 python3.6
安装pyttsx3 pandas numpy
在 https://github.com/pwxcoo/chinese-xinhua 项目中可以下载到中华成语的语料库,该项目收录包括 14032 条歇后语,16142 个汉字,264434 个词语,31648 个成语。里面找到这个idiom.json文件。和本程序放在一个文件夹即可。
下面是代码。
免责声明:本文是参考的好多博主的代码,没有任何盈利的目的,纯属学习交流,如果有异议,请联系我删除。
参考的博主和链接如下:
https://blog.csdn.net/as604049322/article/details/118154687
https://www.jianshu.com/p/c929a3b2b896

import pandas as pd
import numpy as np
import pyttsx3
import time
engine = pyttsx3.init()
chengyu = pd.read_json("idiom.json")
t = chengyu.pinyin.str.split()
chengyu["shoupin"] = t.str[0]
chengyu["weipin"] = t.str[-1]
chengyu = chengyu.set_index("word")[["shoupin", "weipin"]]


engine.say("请输入一个成语")
engine.runAndWait()
word = input("请输入一个成语:")


flag = 1
if word not in chengyu.index:
    print("你输入的不是一个成语,程序结束!")
    engine.say("你输入的不是一个成语,程序结束!")
    engine.runAndWait()
    flag = 0

while flag:
    engine.say("请输入接龙的次数(1到100次的整数,输入任意字母表示结束程序)")
    engine.runAndWait()
    n = input("接龙的次数(1-100次的整数,输入任意字母表示结束程序)")
    time.sleep(1)
    engine.say("好的!为您展示以下词语")
    engine.runAndWait()
    if not n.isdigit():
        print("程序结束")
        break
    n = int(n)
    if not (0 < n <= 100):
        print("超过100,程序结束")
        break
    for _ in range(n):
        words = chengyu.index[chengyu.shoupin == chengyu.loc[word, "weipin"]]
        
        if words.shape[0] == 0 :
            print("我尽力了,程序结束")
            flag = 0
            print(range(n))
            break
        elif  _== n-1:
            word = np.random.choice(words)
            print(word)
            engine.say(word)
            engine.runAndWait()
            print("成语够数了,程序结束")
            engine.say("成语够数了,程序结束")
            engine.runAndWait()
            flag = 0
            #print(range(n))
            break   
        
        word = np.random.choice(words)
        print(word)
        

        engine.say(word)
        engine.runAndWait()






你可能感兴趣的:(python制作生活小工具,python,开发语言)