不要问我为什么666 2022-05-22 19:25 采纳率: 100%
浏览 46
已结题

python,turtle模块

使用turtle模块绘制词频统计结果,其中词频数据
wordFrequency=
{"the":104,"a":63,"to":42,"of":42,"Kevin":36,"he":32,"you":28,"and":28,"is":27,"i":26}
以柱状图的形式展示统计结果。

  • 写回答

1条回答 默认 最新

  • Hann Yang 全栈领域优质创作者 2022-05-22 21:21
    关注

    如下所示,主要在遍历字典时要凑好坐标位置有点麻烦:

    import turtle
    
    t = turtle.Pen()
    
    t.color("red")
    t.pensize(3)
    t.speed(0)
    
    wordFrequency = {"the":104,"a":63,"to":42,"of":42,"Kevin":36,"he":32,"you":28,"and":28,"is":27,"i":26}
    
    def Goto(x,y):
        t.penup()
        t.goto(x,y)
        t.pendown()
                  
    def rect(x,y,h,w=45):
        Goto(x,y)
        for i in range(2):
            t.forward(w)
            t.left(90)
            t.forward(h)
            t.left(90)
            t.fillcolor('red')
    
    start_x , start_y = -320, -200
    Goto(start_x , start_y)
    t.forward(630)
    
    for i,d in enumerate(wordFrequency.items()):
        rect(start_x + i*65, start_y ,d[1]*4 )
        tx = t.xcor()
        Goto(tx+(6-len(d[0]))*4, t.ycor()-25)
        t.write(d[0], font=('Arial',14,'normal'))
        Goto(tx + (8 if d[1]>100 else 12), t.ycor()+d[1]*4+30)
        t.write(d[1], font=('Arial',14,'normal'))
    
    t.hideturtle()
    t.done()
    

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 6月2日
  • 已采纳回答 5月25日
  • 创建了问题 5月22日

悬赏问题

  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了
  • ¥100 H5网页如何调用微信扫一扫功能?
  • ¥15 讲解电路图,付费求解
  • ¥15 有偿请教计算电磁学的问题涉及到空间中时域UTD和FDTD算法结合的
  • ¥15 three.js添加后处理以后模型锯齿化严重
  • ¥15 vite打包后,页面出现h.createElement is not a function,但本地运行正常