- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
任何人都可以帮我清理我的图表吗?当我绘制 y 轴时,我希望将整数四舍五入到最接近的百分位。另外,在每个条形下我需要标记“a”-“z”:总共 26 个条形:
def letterFreqPlot(freqList):
border = 5
t = turtle.Turtle()
t.pensize(3)
screen = t.getscreen()
maxheight = max(freqList)
numbers = len(freqList)
screen.setworldcoordinates(0-border,-.05,numbers+1,maxheight+.1)
t.goto(0,0)
t.hideturtle()
t.speed(0)
t.lt(90)
t.fd(maxheight)
t.fd(-maxheight)
t.right(90)
for item in freqList:
t.fillcolor("blue")
t.begin_fill()
for dist in [1, item, 1, item]:
t.fd(dist)
t.lt(90)
t.fd(1)
t.end_fill()
t.goto(0,0)
t.lt(90)
for i in freqList:
t.fd(i)
t.lt(90)
t.fd(3)
t.write(float(i))
t.fd(-3)
t.rt(90)
t.fd(-i)
print('Click to exit')
screen.exitonclick()
freqList = letterFreq(words)
letterFreqPlot(freqList)
频率列表:
[0.09090909090909091, 0.0, 0.0, 0.09090909090909091, 0.18181818181818182, 0.0, 0.0, 0.0, 0.045454545454545456, 0.0, 0.0, 0.0, 0.0, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.045454545454545456, 0.18181818181818182, 0.045454545454545456, 0.09090909090909091, 0.045454545454545456, 0.0, 0.045454545454545456, 0.0, 0.0, 0.0]
最佳答案
下面是我尝试将您想要的功能添加到图表中以及稍微优化绘图代码并添加功能:
from turtle import Turtle, Screen
BORDER = 5
FONT = ("Arial", 12, "normal")
FLOAT_FORMAT = "0.2f"
PENSIZE = 3
def letterFrequency(string):
counter = dict()
length = ord('z') - ord('a') + 1
for ordinal in range(length):
counter[chr(ordinal + ord('a'))] = 0
count = 0
for character in string:
if character.isalpha():
counter[character] += 1
count += 1
return [counter[key] / count for key in sorted(counter)]
def letterFreqPlot(turtle, canvas, string):
turtle.pensize(PENSIZE)
frequencyList = letterFrequency(string)
maxheight = max(frequencyList)
numbers = len(frequencyList)
canvas.setworldcoordinates(-BORDER, -.05, numbers + 1, maxheight + 0.1)
turtle.hideturtle()
for frequency in sorted(set(frequencyList)):
turtle.penup()
turtle.home()
turtle.lt(90)
turtle.pendown()
turtle.forward(frequency)
turtle.left(90)
turtle.forward(3)
turtle.write(format(frequency, FLOAT_FORMAT), font=FONT)
turtle.penup()
turtle.home()
turtle.sety(-0.0125)
for i, frequency in enumerate(frequencyList):
turtle.forward(0.5)
turtle.write(chr(ord('a') + i), font=FONT)
turtle.forward(0.5)
turtle.home()
turtle.goto(len(frequencyList) / 2, -0.025)
turtle.write(string, align="center", font=FONT)
turtle.home()
turtle.fillcolor("blue")
turtle.pendown()
for frequency in frequencyList:
if frequency > 0.0:
turtle.begin_fill()
for distance in [1, frequency] * 2:
turtle.forward(distance)
turtle.left(90)
turtle.end_fill()
turtle.forward(1)
yertle = Turtle()
yertle.speed("fastest")
screen = Screen()
letterFreqPlot(yertle, screen, "an opportunity to teach is an opportunity to learn")
screen.exitonclick()
我没有让绘图代码回溯那么多,而是使用turtle.home()
来重置起点和方向。为了好玩,我还添加了对您的 letterFrequency()
代码的简单模拟。我收集了许多常量,但沿着这些思路还有更多工作要做。
顺便说一句,你的例子是我见过的 setworldcooperatives()
最好的例子之一。
关于Python turtle 图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27259749/
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
如果 turtle 在一组坐标之上,我想让 turtle 回到地板上: 像这样: floor = -323 if turtle above floor: turtle.goto(floor)
我正在用Python语言编写一个小的文本库游戏。在使用Turtle函数数字输入和文本输入时,会出现一个文本字段,要求用户输入。当文本输入字段出现时,您可以开始输入,而不需要在输入字段中单击,但对于数字
我试图让 turtle 从程序开始就隐藏起来,但即使在放置 t.hideturtle() 之后也是如此。在我将 turtle 声明为变量的正下方, turtle 似乎仍然出现在绘图的中间。 impor
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我将 turtle 设置为最快,当我单独运行第一个循环时,效果很好,但随着我添加更多,它变得与仅单独执行第一个循环时相当。我不知道这是否只是因为绘图的复杂性,但完成形状需要相当长的时间。我可以做些什么
如何在不显示绘图过程的情况下显示最终绘图?我使用的是Python 3.4,这个项目是创建一个射箭游戏。例如,如果我使用以下代码: import turtle screen = turtle.Scree
Python 2.7 版本中的 turtle 和 Turtle 有何不同? import turtle star = turtle.Turtle() for i in range(50): s
如何告诉 turtle 面向 turtle 图形中的方向?我希望 turtle 能够转动并面向一个方向,无论其原始位置如何,我怎样才能实现这一目标? 最佳答案 我认为 turtle.setheadin
如何让 4 只不同的 turtle 同时移动?另外,如何为 Turtle.shape 方法制作人形?我知道有一个名为 register_shape 的 Screen 方法,但我找不到关于它的任何文档。
我设置了热键并且能够移动 turtle ,但是当我运行代码时,如果我超过 x 和 y 值,则不会发生任何事情..也没有错误。怎么了? if (Alex.xcor()>50 or Alex.xcor()
方向: 我创建了以下函数以允许用户将 turtle 更改为他/她选择的图像,然后随时将其标记到 Canvas 上: def TurtleShape(): try: # Tkin
我用黑色 turtle 创建了一个形状(白色矩形)而不是一条线!然后我移动屏幕底部的白色形状以创建一个必须从左向右移动的桨。我必须保持形状但删除黑色箭头。怎么办? from turtle import
我想创建 SpaceInvaders 游戏,但敌人不会被击落,而是会向玩家射击。我使用 .goto() 方法实现它,如下所示: bullet2.goto(player.xcor(),player.yc
出于教学目的,我需要一个图形默认值列表。这是我现在所拥有的: background white canvas 950W by 800H dot 5 (pixels) fil
这个问题在这里已经有了答案: Importing installed package from script with the same name raises "AttributeError: m
我目前正在上初级编程课,正在完成作业。现在,我必须用模块 turtle build 3 个房子(我完成了): def drawBody(mover): #Rectangle part
我有一些代码如下: # My code here turtle.bye() 在那之后,有什么办法可以重新打开 turtle 窗口。我知道您可以执行 turtle.clearscreen() 但这不会关
这段代码设置了一只 turtle 放置的邮票背景。另一只 turtle (其形状来自导入的图像文件)在背景上移动。但是,只要第二只 turtle 位于第一只 turtle 放置的图章上方,它就不可见。
我的程序中有两只 turtle 。它们碰撞在一起时发生了动画,但我希望一只 turtle 位于另一只 turtle 之上,如下所示: 所以,我的问题是 - 我怎样才能实现这一点 - 是否有一行简单的代
我是一名优秀的程序员,十分优秀!