File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
exercises/concept/ellens-alien-game/.docs Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 33## 1. Create the Alien Class
44
55- Remember that class methods are always passed ` self ` as the first parameter.
6- - Remember the double underscores on _ both_ sides of ` __init__ `
7- - Instance variables are unique to the object/class instance that posesses them
8- - Class variables are the same across all instances of a class
6+ - Remember the double underscores on _ both_ sides of ` __init__ ` .
7+ - Instance variables are unique to the object/class instance that posesses them.
8+ - Class variables are the same across all instances of a class.
99
1010## 2. The ` hit ` Method
1111
1414## 3. The ` is_alive ` Method
1515
1616- Remember that class methods are always passed ` self ` as the first parameter.
17- - 0 is not the only 'dead' condition
17+ - 0 is not the only 'dead' condition.
1818
1919## 4. The ` teleport ` Method
2020
2727
2828## 6. Alien Counter
2929
30- - Class variables are the same across all instances of a class
30+ - Class variables are the same across all instances of a class.
3131
3232## 7. Object Creation
3333
You can’t perform that action at this time.
0 commit comments