From f49854866e5ddf68e4c8e2f8e6391d22f66b67e0 Mon Sep 17 00:00:00 2001 From: kjg Date: Fri, 29 May 2020 21:33:13 +0900 Subject: [PATCH] [Python #6] create e32.py --- kjg/python-the-hard-way/e32.py | 31 +++++++++++++++++++++++++++++++ kjg/python.org | 7 +++++-- 2 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 kjg/python-the-hard-way/e32.py diff --git a/kjg/python-the-hard-way/e32.py b/kjg/python-the-hard-way/e32.py new file mode 100644 index 0000000..1b33732 --- /dev/null +++ b/kjg/python-the-hard-way/e32.py @@ -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}") + diff --git a/kjg/python.org b/kjg/python.org index 400c366..35bfee4 100644 --- a/kjg/python.org +++ b/kjg/python.org @@ -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