鱼C论坛

 找回密码
 立即注册
查看: 1384|回复: 6

[作品展示] 【Python】打字训练

[复制链接]
发表于 2022-2-2 16:48:43 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 ckblt 于 2022-2-7 15:29 编辑

我今天闲得无聊编了一个打字软件
它能帮助你打字更快更准确
(金山打字难道不比它强?

(小插曲:我由于懒得复制粘贴网上的句子,就想到了喜之郎果冻笑话,把它放到抄句子里
"""
这是一款打字机软件,
它能帮助你打字更快、更准确。

注: 此软件需要 Python 3.8 以上的解释器才能运行。
"""

import random
from random import choice
import time


def mode_1():
    def gen_sentence():
        name = [
            "我",
            "太空人",
            "太空狼",
            "爷爷",
            "奶奶",
            "爷爷奶奶",
            "喜之郎果冻",
            "喜之郎",
            "洗只狼",
            "爸爸",
            "妈妈",
            "世界冠军",
            "世界吃人冠军",
            "世界吃狼冠军",
            "航天飞机",
            "太空",
            "世界足球先生",
            "世界",
            "足球",
            "世界杯",
            "发明家",
            "药",
            "狼",
            "狼人",
        ]
        action = ["吃", "喝", "当", "画", "鼓励", "旅游", "踩"]
        adj = ["高兴", "伤心", "当人", "生气", "美丽"]

        return f"{choice(name)}{choice(['','长大了'])}要{choice(action)}{choice(name)},{choice(name)}可{choice(adj)}了,给{choice(name)}爱{choice(action)}的{choice(name)}。"

    right = 0
    wrong = 0
    times = []

    print("喜之郎果冻笑话")
    print()

    while True:
        time.sleep(2)
        print("请输入以下句子 ( 输入 0 退出 )")
        sentence = gen_sentence()
        print(sentence)
        start = round(time.time(), 2)
        answer = input()
        end = round(time.time(), 2)
        t = round(end - start, 2)
        if answer == "0":
            break
        elif answer == sentence:
            print(f"你对了,用时 {t} 秒")
            print()

            times.append(t)
            right += 1
        else:
            print(f"你错了,用时 {t} 秒")
            print()

            times.append(t)
            wrong += 1

    if len(times) != 0:
        print(f"你对了 {right} 个,错了 {wrong} 个,平均速度是 {round(sum(times) / len(times), 2)} 秒")
        print()
    else:
        print("退出")
        print()


def mode_2():
    right = 0
    wrong = 0
    times = []
    while True:
        time.sleep(2)
        print("请输入以下验证码 ( 输入 0 退出 )")
        code = str(random.randint(100000, 999999))
        print(code)
        start = round(time.time(), 2)
        answer = input()
        end = round(time.time(), 2)
        t = round(end - start, 2)
        if answer == "0":
            break
        elif answer == code:
            print(f"你对了,用时 {t} 秒")
            print()

            times.append(t)
            right += 1
        else:
            print(f"你错了,用时 {t} 秒")
            print()

            times.append(t)
            wrong += 1

    if len(times) != 0:
        print(f"你对了 {right} 个,错了 {wrong} 个,平均速度是 {round(sum(times) / len(times), 2)} 秒")
        print()
    else:
        print("退出")
        print()


print("欢迎来到 TypeWriter v0.0.1")
print()
print("请选择模式 ( 输入 0 退出 )")
print("1.抄句子")
print("2.抄验证码")

while (mode := input("选择: ")) != "0":
    print()
    if mode == "1":
        mode_1()
        print("请选择模式 ( 输入 0 退出 )")
        print("1.抄句子")
        print("2.抄验证码")
    elif mode == "2":
        mode_2()
        print("请选择模式 ( 输入 0 退出 )")
        print("1.抄句子")
        print("2.抄验证码")
    else:
        print("你的选择有误,请重新", end="")
        # 之后他会 input("选择: ") ,也就是输出 "你的选择有误,请重新选择: "

这些代码我以后会继续完善,有BUG可以提出哦~
最后,祝大家虎年快乐

评分

参与人数 2荣誉 +3 鱼币 +7 收起 理由
python爱好者. + 5
小伤口 + 3 + 2 无条件支持楼主!

查看全部评分

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-2-2 17:58:23 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-2-3 23:30:50 From FishC Mobile | 显示全部楼层
牛牛牛!
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-4 08:38:52 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2022-2-7 12:36:56 From FishC Mobile | 显示全部楼层
牛逼牛
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-8 10:42:20 | 显示全部楼层
支持支持
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2022-2-9 09:57:30 | 显示全部楼层
666,真心好用
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-12 13:12

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表