首页 > 解决方案 > SyntaxError:小饰品 main.py 中第 16 行的错误输入

问题描述

import turtle
    
pen = turtle.Turtle()
pen.speed(10000000000)
pen.color("green", "red")
pen.begin_fill()
     
for i in range(100):
    pen.forward(209)
    pen.left(421)
    pen.right(312)
pen.hideturtle()
turtle.done()
   
o == input("Do you love it?y/n")
  **if o == y:**
      print"Thanks, please love for me{^-^}"
    if o == n:
      print"Thanks for playing{^-^}"
    else:
    
    
      print"I can't understand what are you saying, can you say that again?

链接在这里

在第 16 行语法错误中,我在 trinket 中做到了我的第一个项目我把它放在 trinkets 中在 steamforVietNam 每周挑战

标签: pythonhtmlturtle-graphicspython-turtlethonny

解决方案


正如@Sujay 提到的,你有以下问题:

  • 认同
  • 打印语句语法
  • 分配变量

此外,如果您打算以某种方式使用用户输入(不清楚您想要什么),请将其放在海龟笔上方:

import turtle

o = input("Do you love it?y/n")
if o == "y":
    print("Thanks, please love for me{^-^}")
if o == "n":
    print("Thanks for playing{^-^}")
else:
    print("I can't understand what are you saying, can you say that again?")

pen = turtle.Turtle()
pen.speed(10000000000)
pen.color("green", "red")
pen.begin_fill()
 
for i in range(100):
    pen.forward(209)
    pen.left(421)
    pen.right(312)
pen.hideturtle()
turtle.done()


推荐阅读