-3
A
答えて
0
あなたは、あなたがこのような行の末尾に括弧を追加する必要がライン2上のあなたのカメをインスタンス化しませんでした:
import turtle
my_turtle = turtle.Turtle()
my_turtle.forward(100)
クラスタートルを返すturtle.Turtle
値を。クラスはどのようにすべてのカメが動作するかの説明です。一方、tutle.Turtle()
を使用すると、クラスにそれ自身のインスタンスを作成するよう依頼されますが、カメの生活のルールに従い、この地球に住む他のすべてのカメとは独立した新しいベイビーカメが移動します。
関連する問題
- 1. TypeError:missing 1必要な位置引数
- 2. 欠けて1必要な位置引数 'b'
- 3. TypeError:on_press()missing 1必要な位置引数: 'key'
- 4. Django is_valid()missing 1必要な位置引数: 'self'
- 5. geopy TypeError:geocode()missing 1必要な位置引数: 'query'
- 6. TypeError:func1()missing 1必要な位置引数: 'self'
- 7. Python OLSモデル:__init __()missing 1必要な位置引数: 'endog'
- 8. TypeError:YN_prompt()missing 1必要な位置引数: 'self'
- 9. place_configure()missing 1必要な位置引数: 'self'
- 10. がありません1 tempに必要な位置引数
- 11. builtins.TypeError:__init __()missing 2必要な位置引数: 'height'と 'radius'
- 12. TypeError:game()missing 1必要な位置引数: 'x'
- 13. TypeError:fun()missing 1必要な位置引数: 'link'
- 14. TypeError:addQuiz()missing 1必要な位置引数: 'score'
- 15. Python TypeError:set()missing 1必要な位置引数: 'value'
- 16. TypeError:insert()missing 1必要な位置引数: 'string'
- 17. Keras、models.add()missing 1必要な位置引数: 'layer'
- 18. pyspark throws TypeError:textFile()missing 1必要な位置引数: 'name'
- 19. TypeError:validate_on_submit()missing 1必要な位置引数: 'self'
- 20. TypeError:do_before()missing 1必要な位置引数: 'resp'
- 21. ケラス| TypeError:__init __()missing 1必要な位置引数: 'nb_col'
- 22. to_categorical()missing 1必要な位置引数: 'nb_classes' - tflearn
- 23. TypeError:insert()missing 1必要な位置引数: 'chars'
- 24. TypeError:set_name()missing 1必要な位置引数: 'name'
- 25. TypeError:run()missing 1必要な位置引数:Session.run()の 'fetches'
- 26. tensorflow.contrib.learn.DNNclassifierがありません1必要な位置引数: 'feature_columns'
- 27. FOMが見つからない1必要な位置引数: '要求'フォーム
- 28. ジャンゴ - 1つのに必要な位置引数不足している:「要求」
- 29. はTypeError:export_users_xls(1つの)必要な位置引数が欠落: '要求'
- 30. argparse:定位置引数の前にオプションの引数が必要です
'turtle.Turtle()'カッコで囲まれた – abccd
BTW、スクリーンショットへのリンクだけでなく、実際のコードとエラーメッセージを今後の質問に含めてください。 – penguin359
ありがとうございました。私はそれに注意を払うつもりです。とても有難い! –