File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
exercises/concept/ellens-alien-game/.meta Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,14 @@ The goal of this exercise is to introduce the student to the concept of classes.
1313- Know how to create a class.
1414- Know how to create objects.
1515- Understand that instantiating a class creates an object.
16- - Know that ` __init__() ` is what is known as a 'constructor'.
17- - Know that ` __init__() ` is called upon object creation.
18- - Know that ` __init__() ` is used to initialize the object upon instantiation.
16+ - Know that ` __init__() ` is a 'constructor' and is used to initialize the object upon instantiation.
17+ - Know that ` __init__() ` is called upon instantiation/object creation.
1918- Know what a method is and how it differs from a function.
2019- Know how to create a method.
2120- Implement instance variables.
2221- Implement class variables.
2322- Understand the difference between instance and class variables.
24- - Use ` pass ` as a placeholder for class methods
23+ - Use ` pass ` as a placeholder for class methods.
2524
2625## Out of scope
2726
You can’t perform that action at this time.
0 commit comments