[Python #6] create e34.py

This commit is contained in:
kjg 2020-05-29 22:11:07 +09:00
parent 9f5cedcc4f
commit 660b814195
2 changed files with 20 additions and 0 deletions

View 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])

View File

@ -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