0
class Test: t. egg = 7 t = Test() print(t. Test )
please help me
6 Respuestas
+ 2
Class test:
t. __egg =7
t= Test() print(t._ Test __egg)
The underscore creates the egg into the method it needs to be
0
ohhh i got the answer
0
Class Test:
__egg =7
t= Test()
print(t._ Test __egg)
- 3
The field "question" should be used for the a very short summary of your question, or the topic of what you want to talk about. The field "description" should be used for the details of your question. 😊
"Please help me" is not a very good description 😉
- 4
For the first one it is __
the rest I am not sure
- 4
class Test:
egg = 7
t = Test()
print(t.
Test
)