What is the Jane's attribute In following code.
Import turtle
Jane=turtle. Turtle()
Jane. forward(20)
print(jane.x)
Answers
Answered by
0
Answer:
The Jane attribute code is x(jane.x)
so that answer is (jane.x)
i hope you like my answer
Give me thanks and mark me Brainliest
Answered by
14
'x' is the name of jane's attribute referred in the given code.
Given code :
import turtle
jane = turtle.Turtle()
jane.forward(20)
print(jane.x)
Attribute is nothing but the instance of a class. Here, the turtle's object 'jane' is accessing its attribute x. In reality, we didn't create that attribute, so it will raise an Error.
Explanation of code :
- Coming to the complete code, we have imported the turtle library and created a turtle object with the variable name 'jane'
- jane.forward(20) moves forward the turtle object by 20 pixels on Turtle screen.
- In the next line, Jane tries to access its attribute x, which isn't yet created.
Learn more :
1) What is the output Of kill 9042018?
brainly.in/question/13538278
2) Given the following permutation of a,b,c,d,e,f,g,h,i,j, what is the next permutation after 'eibjdhgfca', in lexicographic (dictionary) order?
brainly.in/question/12375223
Attachments:
Similar questions