简单 Python-3 程序中的无效语法错误

发布于 2024-09-13 18:39:22 字数 1471 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

巷雨优美回忆 2024-09-20 18:39:32

我想,以防万一其他三个答案不够明显,我应该告诉你你首先需要 def

def draw_circle(turtle, r):

@People 复制:
说真的,我们还能得到 1 个答案吗?我相信 3 个(如果加我的话 4 个)还不够

I thought, just in case the other three answers weren't obvious enough, I should tell you that you need def first

def draw_circle(turtle, r):

@People duplicating:
Seriously, could we get 1 more answer? I believe 3 (4 if you add me) isn't enough

忆依然 2024-09-20 18:39:28

在Python中,我们使用def关键字定义函数......就像

def draw_circle(turtle, r):
    # ...

in python, we define functions using the def keyword.. like

def draw_circle(turtle, r):
    # ...
锦欢 2024-09-20 18:39:28

您需要编写:

def draw_circle(turtle, r):

定义一个函数

You need to write:

def draw_circle(turtle, r):

to define a function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文