[Python #6] create e34.py
This commit is contained in:
parent
9f5cedcc4f
commit
660b814195
2 changed files with 20 additions and 0 deletions
18
kjg/python-the-hard-way/e34.py
Normal file
18
kjg/python-the-hard-way/e34.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
animals = ['bear', 'python3.6', 'peacock', 'kangaroo', 'whale', 'platypus']
|
||||
|
||||
#1. The animal at 1.
|
||||
print(animals[1])
|
||||
#2. The third (3rd) animal.
|
||||
print(animals[2])
|
||||
#3. The first (1st) animal.
|
||||
print(animals[0])
|
||||
#4. The animal at 3.
|
||||
print(animals[3])
|
||||
#5. The fifth (5th) animal.
|
||||
print(animals[4])
|
||||
#6. The animal at 2.
|
||||
print(animals[2])
|
||||
#7. The sixth (6th) animal.
|
||||
print(animals[5])
|
||||
#8. The animal at 4.
|
||||
print(animals[4])
|
|
@ -126,3 +126,5 @@ How to use if, elif
|
|||
How to use for-loop
|
||||
**** ex33
|
||||
How to use while-loop
|
||||
**** ex34
|
||||
How to use Accessing Elements of Lists
|
||||
|
|
Loading…
Reference in a new issue