⑴ python调用画布总是出现'dict' object has no attribute 'forward'
turtle.pen() 返回的是一个字典。
>>>t=turtle.pen()
>>>t
{'pensize':1,'shown':True,'resizemode':'noresize','fillcolor':'black','stretchfactor':(1,1),'tilt':0,'speed':3,'pendown':True,'pencolor':'black','outline':1}
>>>
你的想法应该是使用turtle.forward(60)吧
>>>printturtle.forward.__doc__
.
Aliases:forward|fd
Argument:
distance--anumber(integerorfloat)
,inthedirection
theturtleisheaded.
Example:
>>>position()
(0.00,0.00)
>>>forward(25)
>>>position()
(25.00,0.00)
>>>forward(-75)
>>>position()
(-50.00,0.00)
>>>
⑵ python输入t.forward(50)显示出错
t=turtle.Pen()
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <mole>
t=turtle.Pen()
NameError: name 'turtle' is not defined
⑶ python3中尝试for-else循环语句时出现的keyerror:"name"错误。
你的stu遍历了整个列表,前面两个字典是有'name' key的,没有问题,后面两个“c”,“d”当然是会报错的。
⑷ python初学者,forward()方法执行后报'NoneType' object has no attribute 'path'
#你的dbw地址有问题
#!/usr/bin/envpython3
#-*-coding:utf-8-*-
__author__='yinzhuoqun'
#日志级别等级ERROR>WARNING>INFO>DEBUG等几个级别
importlogging
logging.basicConfig(level=logging.INFO)
#logging.basicConfig(level=logging.WARNING)
fromseleniumimportwebdriver
fromtimeimportsleep
importos
if'HTTP_PROXY'inos.environ:delos.environ['HTTP_PROXY']
dr=webdriver.Firefox()
first_url='https://www..com'
print("nowaccess%s"%(first_url))
dr.get(first_url)
sleep(1)
second_url='http://news..com/'
print("nowaccess%s"%(second_url))
dr.get(second_url)
sleep(3)
print("backto%s"%(first_url))
dr.back()
sleep(1)
print("forwardto%s"%(second_url))
dr.forward()
sleep(2)
dr.quit()
⑸ 这个python代码哪里错了吗
1、在range()函数里要有一个大于0的整数,才是你想要的次数。
2、color里要有六项,和sides=6一样才行,6种颜色6条边。
3、要导入fromturtleimportdone模块,done()才能起作用。
4、下次有类似问题,不要发照片,把代码发上来,大家才能更快更好的帮助你调试程度。
以下是Python3.6调试通过的代码:
importturtle
fromturtleimportdone
t=turtle.Pen()
turtle.bgcolor("black")
sides=6
colors=["red","yellow","blue","orange","purple","white"]
forxinrange(60):
t.pencolor(colors[x%sides])
t.forward(x*30/sides+1)
t.left(360/sides+1)
t.width(x*sides/200)
done()
顺便说一下,这个程序画出来的图形还是很漂亮的,加油!
⑹ python海龟无法正确导入指令 ‘dict' object has no attribute 'forward'
这个错误应该是你使用dict类型对象调用forwar方法导致的,dict里的确是没有这个方法,你最好贴下代码,这样能更准确的找到问题。
如果解决了您的问题请采纳!
如果未解决请继续追问
⑺ python里面forward和right是什么意思
使用Python时候,模型训练时不需要使用forward,只要在实例化一个对象中传入对应的参数就可以自动调用 forward 函数,right的意思是正当。
⑻ python turtle模块,使用问题
import turtle
t = turtle.pen()
turtle.forward(50)
要这样,你的t是画笔,他并没有forward这个方法