[Python #6] create e32.py
This commit is contained in:
parent
16f3a7714b
commit
f49854866e
2 changed files with 36 additions and 2 deletions
31
kjg/python-the-hard-way/e32.py
Normal file
31
kjg/python-the-hard-way/e32.py
Normal file
|
@ -0,0 +1,31 @@
|
|||
the_count = [1, 2, 3, 4, 5]
|
||||
fruits = ['apples', 'oranges', 'pears', 'apricots']
|
||||
change = [1, 'pennies', 2, 'dimes', 3, 'quarters']
|
||||
|
||||
# this first kind of for-loop goes through a lis
|
||||
|
||||
for number in the_count:
|
||||
print(f"This is count {number}")
|
||||
|
||||
# same as above
|
||||
for fruit in fruits:
|
||||
print(f"A fruit of type: {fruit}")
|
||||
|
||||
|
||||
# also we can go through mixed lists too
|
||||
for i in change:
|
||||
print(f"I got {i}")
|
||||
|
||||
# we can also build lists, first start with an empty one
|
||||
elements = []
|
||||
|
||||
# then use the range function to do 0 to 5 counts
|
||||
for i in range(0, 6):
|
||||
print(f"Adding {i} to the list.")
|
||||
# append is a function that lists understand
|
||||
elements.append(i)
|
||||
|
||||
# now we can print them out too
|
||||
for i in elements:
|
||||
print(f"Element was: {i}")
|
||||
|
|
@ -101,7 +101,7 @@ repeat from ex1 to ex21
|
|||
" # () ' + . < ? , = / % - * {} \n \t
|
||||
open read close truncate def return print
|
||||
|
||||
*** Python #3:
|
||||
*** Python #4:
|
||||
**** ex23
|
||||
How to use encode and decode
|
||||
**** ex24
|
||||
|
@ -110,7 +110,7 @@ practice function and print
|
|||
practice import function
|
||||
**** ex26
|
||||
practice debug code
|
||||
*** Python #4:
|
||||
*** Python #5:
|
||||
**** ex27
|
||||
How to use True and Flase
|
||||
**** ex28
|
||||
|
@ -121,3 +121,6 @@ How to use if-statement
|
|||
How to use if-else
|
||||
**** ex31
|
||||
How to use if, elif
|
||||
*** Python #6
|
||||
**** ex32
|
||||
How to use for-loop
|
||||
|
|
Loading…
Add table
Reference in a new issue