⑴ 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這個方法