- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试以视觉方式表示圆内 pi 的前一百万位数字。与编码列车 channel 类似,但使用的是 Python。 (https://www.youtube.com/watch?v=WEd_UIKG-uc&index=137&list=PLRqwX-V7Uu6ZiZxtDDRCi6uhfTH4FilpH)
它应该看起来像这样:
但它看起来像这样:
首先,我导入了 math
和 tkinter
类,我阅读了文档并制作了 Canvas 。我认为这里没有问题:
from math import *
from tkinter import *
openpi = open (r'PI_numbers.txt', 'r')
pi = openpi.read()
win= Tk()
win = Canvas(win, width=500, height=500)
win.configure(background=('black'))
win.create_oval(0,0,500,500, fill='white')
接下来,由于我不知道如何制作开关盒,所以我搜索并找到了一些东西。
def zero(sx,sy):
angle=36*0
x= 250* (1 + cos(angle))
y= 250* (1 + sin(angle))
win.create_line(sx,sy, x, y)
sx=x
sy=y
def one(sx,sy):
angle=36*1
x = 250 * (1 + cos(angle))
y = 250 * (1 + sin(angle))
win.create_line(sx, sy, x, y)
sx = x
sy = y
def two(sx,sy):
angle=36*2
x = 250 * (1 + cos(angle))
y = 250 * (1 + sin(angle))
win.create_line(sx, sy, x, y)
sx = x
sy = y
就这样到九点。然后:
y=250
x=250
options = {
'0': zero(sx=x, sy= y),
'1': one(sx=x, sy= y),
'2': two(sx=x, sy= y),
'3': three(sx=x, sy= y),
'4': four(sx=x, sy= y),
'5': five(sx=x, sy= y),
'6': six(sx=x, sy= y),
'7': seven(sx=x, sy= y),
'8': eight(sx=x, sy= y),
'9': nine(sx=x, sy= y),
".": point()
}
i=0
while len(pi)> i:
n = pi[i]
options [n]
i += 1
win.pack()
win.mainloop()
所以,在这里我试图从最后一个数字到新数字建立一条线。我从 250 250 开始,即圆周的中心。我检测到的问题不仅仅是 x 和 y 错误,而且它总是从中心开始,我不知道为什么。
在 options [n]
行中我得到这个:语句似乎没有效果。
最佳答案
I propose working with module turtle because it's a lot easier for drawing things
我强烈同意@Superior 的这种观点,但我个人会避免使用数学库,而让海龟(在 tkinter 上运行)来完成所有工作:
from turtle import Turtle, Screen
LARGE_RADIUS = 200
SMALL_RADIUS = 15
def make_pi():
""" from https://stackoverflow.com/a/9005163/5771269 """
q, r, t, k, m, x = 1, 0, 1, 1, 3, 3
while True:
if 4 * q + r - t < m * t:
yield m
q, r, m = 10 * q, 10 * (r - m * t), (10 * (3 * q + r)) // t - 10 * m
else:
q, r, m, t, k, x = k * q, x * (r + 2 * q), (q * (7 * k + 2) + r * x) // (t * x), t * x, k + 1, x + 2
screen = Screen()
screen.mode('logo') # put zero straight up
turtle = Turtle('turtle', visible=False)
turtle.speed('fastest')
turtle.penup()
turtle.sety(LARGE_RADIUS)
turtle.right(90)
positions = []
for index in range(10): # pre calculate all positions on circle
positions.append(turtle.position())
turtle.circle(-LARGE_RADIUS, extent=360 / 10)
turtle.home()
turtle.pendown()
turtle.showturtle()
turtle.speed('slow')
previous_digit = -1 # track digit repetitions
for digit in make_pi():
if digit == previous_digit: # same digit again, circle around
turtle.setheading(turtle.towards(0, 0))
turtle.left(90)
turtle.circle(-SMALL_RADIUS)
else:
position = positions[digit]
turtle.setheading(turtle.towards(position))
turtle.goto(position)
previous_digit = digit
screen.mainloop() # never reached
我没有使用固定大小的 PI_numbers.txt 文件,而是使用 digits of pi algorithm posted on StackOverflow by @batbaatar 将其设置为永久运行。 。根据您的需要更换。
我稍微修改了绘图,显示了数字何时通过循环回同一数字来跟随自身:
注意我们遇到第一个双 7 需要多长时间。我已将海龟置于 Logo 模式,以便自然地将零放在屏幕顶部。您可以在第二次 turtle.speed()
调用时调整动画的速度。
这不是一个合适的海龟程序,因为它是建立在 while True:
之上的,应该使用 screen.ontimer()
来提取每个数字,以便其他事件,像screen.exitonclick()
一样,可以执行。
关于python - 在 Python 中制作 pi 数字的可视化表示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51341959/
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我正在使用带有Grove Pi +(1.2.2固件)的Raspberry Pi 3 B模型和用于Robots Image的Raspbian。 我在I2C-1端口中插入了多 channel 气体传感器,
这看起来非常简单,但我似乎无法弄清楚如何将 -Pi 和 Pi 之间的角度映射到 0 到 2Pi 的范围内。我尝试使用 np.select 但由于某种原因它卡住了我的程序。我需要这个范围内的角度,因为它
在使用 SciPy 和 NumPy 的项目中,我应该使用 scipy.pi , numpy.pi , 或 math.pi ? 最佳答案 >>> import math >>> import numpy
Closed. This question does not meet Stack Overflow guidelines。它当前不接受答案。 想改善这个问题吗?更新问题,以便将其作为on-topic
我有一个运行 Raspbian 的 Raspberry Pi 1。我尝试在 Raspberry Pi 3 上运行 SD 卡,但它没有启动。 我已经阅读了有关升级 Raspberry Pi 2 安装以在
#include using namespace std; #define fast ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); #d
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a softwar
我目前正在尝试RadiusNetworks发布的Raspberry Pi iBeacon教程,网址为 http://developer.radiusnetworks.com/2013/10/09/ho
我无法在运行Raspbian的Raspberry Pi 3上安装我创建的 Electron 应用程序。我已经使用了electronic-packager来创建软件包,然后创建了一个debian安装程序
我想在Linux上为Raspberry Pi 1设置交叉编译环境。 特别是我想尝试最新版本,即Raspbian测试+ Qt5开发分支。 这个问题: How can I create a modern
我想要从我的 Raspberry Pi Zero 到手机的低延迟流式传输。据我了解,移动浏览器不支持 RTMP 流式传输,HLS 流式传输具有高延迟,而 webRTC 是我最好的选择。 有谁知道从零开
我的公司使用 Raspberry Pi 3 作为产品中的嵌入式 Controller 。用户不会优雅地关闭它,他们只是扳动一个开关。为避免损坏,/boot 和/root 文件系统是只读的。这似乎是防弹
如何使用 Raspberry Pi 作为 b/w USB Tethered 手机和路由器的桥接器,使用“以太网电缆 b/w Raspberry Pi 和路由器”和“USB 电缆 b/w 手机和 Ras
我正在尝试在Raspberry Pi 3上安装Rakudo Star 2018.04。 我做: sudo perl Configure.pl --gen-moar --gen-nqp --prefix
我正在寻找一些可以有效完成的不错的 C 代码: while (deltaPhase >= M_PI) deltaPhase -= M_TWOPI; while (deltaPhase T Mod(T
我正在尝试为 raspberry Pi 构建跨环境以在 Eclipse CDT for windows 上构建二进制文件。 我得到了用于访问 GPIO 的 Wiring Pi,我需要使用“Window
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
我正在寻找一些可以有效完成的不错的 C 代码: while (deltaPhase >= M_PI) deltaPhase -= M_TWOPI; while (deltaPhase T Mod(T
这个问题在这里已经有了答案: C: How to wrap a float to the interval [-pi, pi) (15 个答案) 关闭 9 年前。 我想知道是否可以定义一个只能取 -
我是一名优秀的程序员,十分优秀!