如何将 Python 脚本添加到 HTML

How to add Python scripts to HTML

我有一个 python 脚本,我想在 code.org 上使用 HTML 来显示它,但我不知道我可以使用什么命令或方法来显示我想要显示的内容.这是 HTML 和 python 脚本的示例,我想在其中添加 运行。 (python 为发布而缩短的代码)

import turtle as fab
import pandas as pd

platform = [0.00151,0.00318,0.00436,0.00551,0.00563,0.00989,0.01196]

fab.speed(10)
fab.pensize(2.5)
fab.penup()
fab.right(90)
fab.forward(300)
fab.left(90)
fab.pendown() #sets the turtle in place at the bottom of the screen

fab.color('#49514c') #black colour for amazon
fab.begin_fill()
fab.circle(platform[6]*30000) # draws the circle for amazon music unlimited
fab.end_fill()

fab.penup()
fab.forward(450)
fab.left(90)
fab.forward(400)
fab.right(90)
fab.pendown() #moving the pen to write the text

fab.color('#49514c')
fab.write('Amazon Music Unlimited!', move=False, align="left", font=("Comic Sans", 20, "normal"))
fab.penup()
fab.right(90)
fab.forward(50)
fab.left(90)
fab.pendown() #write amazon

简答:

你不能。

长答案:

Python 不能在网页上 运行,它是一种后端语言。您可能希望使用 JavaScript 和 HTML Canvas 对象在其上绘制。您可以使用 this 作为起点或 google“JavaScript 在 canvas 上绘制”。

顺便说一句:要将乌龟放在底部,您可以在 Python

中使用 fab.goto(x, y)