Based on Zed Shaw's "Learn Python the Hard Way," this is a review of Exercises 27 - 34 in that text. For non-computer-science students and learners. Updated with new slides Feb. 2, 2014. Introduces Booleans, if-elif-else, loops, lists.
Lesson12: Reinforcement Learning for Critterbot Science 8butest
油
The document provides an introduction to Ivan Pavlov's famous experiment with dogs. It explains that Pavlov noticed dogs salivating when they heard a sound associated with being fed, even if food was not present. Pavlov conducted experiments ringing a bell when feeding the dogs, and the dogs soon learned to associate the bell with food and would salivate upon hearing it. The document also discusses how reinforcement learning works, where behaviors are increased through rewarding responses.
Based on Zed Shaw's "Learn Python the Hard Way," this is a review of Exercises 1 - 12 in that text. For non-computer-science students and learners. Updated with new slides Jan. 12, 2014. Introduces math, print statement, variables, format strings, raw_input().
Based on Zed Shaw's "Learn Python the Hard Way," this is a review of Exercises 13 - 19 in that text. For non-computer-science students and learners. This PPT will not make sense without Zed's lessons. The PPT is intended to supplement and help explain these seven lessons. The PPT was updated on Jan. 17, 2014.
Predicting Gene Loss in Plants: Lessons Learned From Laptop-Scale Dataphilippbayer
油
- The document summarizes a machine learning project to predict gene loss in plants using XGBoost models. It describes struggles with class imbalance, evaluating various metrics and validation techniques, and using SHAP values to understand feature importance. The key lessons are to carefully check for class imbalance, evaluate predictions manually, and recognize that machine learning is as much an art as a science with no guarantees about performance.
The document discusses loops in Ruby programming. It covers while, until, and for loops with examples. It also discusses arrays and sorting arrays. The homework assignment is to write a FizzBuzz program that prints numbers from 1 to 100, replacing multiples of 3 with "Fizz", multiples of 5 with "Buzz", and multiples of both with "FizzBuzz".
Code Like Pythonista
Beautifully made PPT.
Ref. http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html
Image ref : https://pixabay.com/ko/ and https://morguefile.com/
licensed under a Creative Commons Attribution/Share-Alike (BY-SA) license.
Decision control units by Python.pptx includes loop, If else, list, tuple and...supriyasarkar38
油
The document discusses various Python control flow statements and data structures. It covers:
- Decision control statements like if, if-else, and nested if statements
- Loop structures like while and for loops, and statements within loops like break, continue, and else
- Data types like tuples, lists, and dictionaries
- Examples of using if/else, while, for, range(), break, continue, and pass statements
- Accessing, updating, packing/unpacking, joining, and looping through tuple and list items
LESSON 3A. INTRODUCTION TO ITERATION: LOOPS, TRACE TABLES, WHILE LOOPS
Introduction to Iteration and loops. The theory behind loops and how they work. Create and adapt programs using loops. Intro to the random number generator. Learn about trace tabling (white box testing). Example of a trace table and dry run. Wonders of the Fibonacci sequence. Examples of Iteration in game design. Focus on While loops. Challenges, tasks (with solutions), suggested videos, big ideas discussion and research and HW included. Introducing Ada Lovelace and Charles Babbage.
1. Think Relevant ==> Simple ==> Intricate.
2. Visualize mastery blocks.
3. Generate comprehensive examples.
4. Assessment.
5. End with lead to next topic.
This document recaps topics covered in Week 1 of a coding initiative, including functions, modules, boolean expressions, relational operators, and conditional statements in Python. It provides examples and explanations of each topic, such as how functions have a header, body and can take parameters; how to import and use modules; how boolean expressions work with logical operators; and how to write conditional statements using if/elif/else.
This lecture covers data structures and iteration. It discusses arrays as ordered collections of values that allow items to be accessed by index. Python offers two array-like data structures: lists, which are mutable, and tuples, which are immutable. Loops allow code to repeatedly execute and come in two main types - while loops, which repeat while a condition is true, and for loops. Break and continue statements can be used in loops to exit or skip iterations under certain conditions.
This document provides instructions and sample code for Exercise 4 of Learn Python the Hard Way. The exercise introduces variables and variable names in Python.
The sample code defines several variables like cars, drivers, passengers, and uses them to calculate things like empty cars, carpool capacity, and average passengers per car. It prints the results.
The document provides extra credit tasks like adding comments to explain each line, reading the file backwards, finding typing errors, and researching floating point numbers. It also shows an example error when a variable is undefined.
This presentation contains my one day lectures which introduces fuzzy set theory, operations on fuzzy sets, some engineering control applications using Mamdamn model.
This document provides an overview of algorithms and data structures including binary search, recursion, arrays, linked lists, selection sort, and Big O notation. It explains binary search and how it is faster than simple linear search, taking logarithmic time rather than linear time. It also discusses recursion and how recursive functions require a base case to avoid infinite loops. Additionally, it compares arrays and linked lists, explaining when each is better to use, such as arrays enabling random access and linked lists facilitating efficient inserts and deletes. Selection sort is demonstrated as an O(n^2) sorting algorithm. Overall, the document serves as an introduction to fundamental algorithms and computer science concepts.
Loops allow code to be repeatedly executed. The document discusses both indefinite while loops, which continue until a condition is met, and definite for loops, which iterate through each element of a set number of times. Specific examples are given for finding the largest or smallest value in a set using a loop. Loop control structures like break and continue are also explained.
Loops allow code to be repeatedly executed. The document discusses both indefinite while loops, which continue until a condition is met, and definite for loops, which iterate a specific number of times over items in a set. Key loop concepts covered include using break and continue to control loop execution, finding largest/smallest values, counting, summing, and filtering values using conditional logic.
Loops allow code to be repeatedly executed. The document discusses both indefinite while loops, which continue until a condition is met, and definite for loops, which iterate a specific number of times over items in a set. Key loop concepts covered include using break and continue to control loop execution, finding largest/smallest values, counting, summing, and filtering values using if statements.
This document contains notes from a Python class covering functions, lists, strings, and their methods. It discusses built-in functions like len(), range(), and type conversions. It also covers control flow structures like if/else, for loops, exceptions, modules, and functions in more detail including defining functions, parameters, arguments, returning values, docstring, and variable scopes. Assignments include writing functions to process lists and check for palindromes in strings.
Memory is defined as a change at a later time (Time 2) as a result of an experience at an earlier time (Time 1). The document then discusses Hermann Ebbinghaus, who was the first psychologist to systematically study memory in the late 1800s. He recorded his own ability to remember syllables and poetry over multiple study and test trials to understand the learning process and how long information is retained.
Programming Fundamentals Lecture 3 covered data structures and iteration. Data structures allow storing multiple pieces of data in an organized way. Arrays are ordered collections of values that can be accessed by index. Python offers lists and tuples, where lists are mutable and tuples are immutable. Loops called iteration allow repeatedly running a block of code. While loops repeat while a condition is true. Break and continue can be used in loops to exit early or skip iterations conditionally.
Deep dive into algorithms and algorithmic complexity
Understand the key metrics for evaluating an algorithm
Understand the software development life cycle and how to efficiently develop optimal solutions
Not the best presentation, mostly a stream a consciousness about analyzing samples in a Core facility, although I do list some of my favorite methods. So maybe it will be useful to some? I repacakged this into a better talk (see my Genomeweb 2019 talk on 際際滷Share)
Foundations of Logic discusses propositional logic and predicate logic. Propositional logic examines basic definitions of propositions and the truth tables and meanings of logical operators like negation, conjunction, disjunction, implication and biconditional. Predicate logic builds on this by introducing predicates and quantified expressions. The document provides an overview of key topics in propositional and predicate logic.
This document discusses empirical logit models. It begins by clarifying logit models, which use a logit link function to model binary dependent variables. It then discusses Poisson regression models. The document notes that empirical logit can be used to model low-frequency events like errors or rare outcomes that may have probabilities close to 0. Empirical logit makes extreme probabilities less extreme by adding 0.5 to the numerator and denominator when calculating the logit. It concludes by discussing how to implement empirical logit models using the psycholing package in R.
This document contains the course notes for a Linear Algebra class. It provides 4 warnings for students who may be reviewing notes after missing a class: 1) The notes include some material not covered in class. 2) Problems worked in class follow the notes but some sections have unused problems. 3) In-class discussions may include topics not in the notes. 4) The notes are not a substitute for attending class, as important content and insights are only provided in person. The notes are intended to be accessible for self-study in Linear Algebra.
This document provides an overview and introduction to Python programming. It covers setting up Python, background on the language, basic syntax like printing, variables, operators, control structures, functions, and data structures. It encourages participation and practicing the concepts by following along. The goal is to teach the fundamentals of Python in an interactive class format.
SI is supplemental instruction led by Caleb Peacock to help develop study skills. Variables are used to store and reference values in code. There are different data types like integers, floats, and strings. Variables must start with a letter or underscore and can include numbers and underscores but no spaces. Constant variables store fixed values in all caps. Comments describe code and are preceded by #. Basic math operations and mixing data types were demonstrated. The input function prompts users for input values stored in variables.
Assignement2 - Three techniques to be a better learnerAbdelkrim Berkous
油
This is an assignement for a coursera MOOC i'm sharing with you. Hope this will give you enough smile to encourage you to learn how to learn and to take benefit of this fabulous course !! Enjoy smile !!
Introduces the idea of "Just Enough Code" -- to add a 2- or 3-week module on Web coding into courses like editing, or design, or multimedia. There are 2 reasons to do this. One is to demystify how Web and mobile sites are made. The other is to open a door -- for (at least) some students -- to something they might really have an aptitude for, something they might really enjoy, if you just have a chance to explore it.
Multimedia Journalism Innovations in the ClassroomMindy McAdams
油
For a panel about "Innovation in Journalism Education": How teaching multimedia journalism has changed since 1999, and how I have adapted my classes and pushed my department to innovate. Journalism students don't have to be programmers, but they should have an opportunity to learn how to create new story forms for web and mobile platforms.
1. Think Relevant ==> Simple ==> Intricate.
2. Visualize mastery blocks.
3. Generate comprehensive examples.
4. Assessment.
5. End with lead to next topic.
This document recaps topics covered in Week 1 of a coding initiative, including functions, modules, boolean expressions, relational operators, and conditional statements in Python. It provides examples and explanations of each topic, such as how functions have a header, body and can take parameters; how to import and use modules; how boolean expressions work with logical operators; and how to write conditional statements using if/elif/else.
This lecture covers data structures and iteration. It discusses arrays as ordered collections of values that allow items to be accessed by index. Python offers two array-like data structures: lists, which are mutable, and tuples, which are immutable. Loops allow code to repeatedly execute and come in two main types - while loops, which repeat while a condition is true, and for loops. Break and continue statements can be used in loops to exit or skip iterations under certain conditions.
This document provides instructions and sample code for Exercise 4 of Learn Python the Hard Way. The exercise introduces variables and variable names in Python.
The sample code defines several variables like cars, drivers, passengers, and uses them to calculate things like empty cars, carpool capacity, and average passengers per car. It prints the results.
The document provides extra credit tasks like adding comments to explain each line, reading the file backwards, finding typing errors, and researching floating point numbers. It also shows an example error when a variable is undefined.
This presentation contains my one day lectures which introduces fuzzy set theory, operations on fuzzy sets, some engineering control applications using Mamdamn model.
This document provides an overview of algorithms and data structures including binary search, recursion, arrays, linked lists, selection sort, and Big O notation. It explains binary search and how it is faster than simple linear search, taking logarithmic time rather than linear time. It also discusses recursion and how recursive functions require a base case to avoid infinite loops. Additionally, it compares arrays and linked lists, explaining when each is better to use, such as arrays enabling random access and linked lists facilitating efficient inserts and deletes. Selection sort is demonstrated as an O(n^2) sorting algorithm. Overall, the document serves as an introduction to fundamental algorithms and computer science concepts.
Loops allow code to be repeatedly executed. The document discusses both indefinite while loops, which continue until a condition is met, and definite for loops, which iterate through each element of a set number of times. Specific examples are given for finding the largest or smallest value in a set using a loop. Loop control structures like break and continue are also explained.
Loops allow code to be repeatedly executed. The document discusses both indefinite while loops, which continue until a condition is met, and definite for loops, which iterate a specific number of times over items in a set. Key loop concepts covered include using break and continue to control loop execution, finding largest/smallest values, counting, summing, and filtering values using conditional logic.
Loops allow code to be repeatedly executed. The document discusses both indefinite while loops, which continue until a condition is met, and definite for loops, which iterate a specific number of times over items in a set. Key loop concepts covered include using break and continue to control loop execution, finding largest/smallest values, counting, summing, and filtering values using if statements.
This document contains notes from a Python class covering functions, lists, strings, and their methods. It discusses built-in functions like len(), range(), and type conversions. It also covers control flow structures like if/else, for loops, exceptions, modules, and functions in more detail including defining functions, parameters, arguments, returning values, docstring, and variable scopes. Assignments include writing functions to process lists and check for palindromes in strings.
Memory is defined as a change at a later time (Time 2) as a result of an experience at an earlier time (Time 1). The document then discusses Hermann Ebbinghaus, who was the first psychologist to systematically study memory in the late 1800s. He recorded his own ability to remember syllables and poetry over multiple study and test trials to understand the learning process and how long information is retained.
Programming Fundamentals Lecture 3 covered data structures and iteration. Data structures allow storing multiple pieces of data in an organized way. Arrays are ordered collections of values that can be accessed by index. Python offers lists and tuples, where lists are mutable and tuples are immutable. Loops called iteration allow repeatedly running a block of code. While loops repeat while a condition is true. Break and continue can be used in loops to exit early or skip iterations conditionally.
Deep dive into algorithms and algorithmic complexity
Understand the key metrics for evaluating an algorithm
Understand the software development life cycle and how to efficiently develop optimal solutions
Not the best presentation, mostly a stream a consciousness about analyzing samples in a Core facility, although I do list some of my favorite methods. So maybe it will be useful to some? I repacakged this into a better talk (see my Genomeweb 2019 talk on 際際滷Share)
Foundations of Logic discusses propositional logic and predicate logic. Propositional logic examines basic definitions of propositions and the truth tables and meanings of logical operators like negation, conjunction, disjunction, implication and biconditional. Predicate logic builds on this by introducing predicates and quantified expressions. The document provides an overview of key topics in propositional and predicate logic.
This document discusses empirical logit models. It begins by clarifying logit models, which use a logit link function to model binary dependent variables. It then discusses Poisson regression models. The document notes that empirical logit can be used to model low-frequency events like errors or rare outcomes that may have probabilities close to 0. Empirical logit makes extreme probabilities less extreme by adding 0.5 to the numerator and denominator when calculating the logit. It concludes by discussing how to implement empirical logit models using the psycholing package in R.
This document contains the course notes for a Linear Algebra class. It provides 4 warnings for students who may be reviewing notes after missing a class: 1) The notes include some material not covered in class. 2) Problems worked in class follow the notes but some sections have unused problems. 3) In-class discussions may include topics not in the notes. 4) The notes are not a substitute for attending class, as important content and insights are only provided in person. The notes are intended to be accessible for self-study in Linear Algebra.
This document provides an overview and introduction to Python programming. It covers setting up Python, background on the language, basic syntax like printing, variables, operators, control structures, functions, and data structures. It encourages participation and practicing the concepts by following along. The goal is to teach the fundamentals of Python in an interactive class format.
SI is supplemental instruction led by Caleb Peacock to help develop study skills. Variables are used to store and reference values in code. There are different data types like integers, floats, and strings. Variables must start with a letter or underscore and can include numbers and underscores but no spaces. Constant variables store fixed values in all caps. Comments describe code and are preceded by #. Basic math operations and mixing data types were demonstrated. The input function prompts users for input values stored in variables.
Assignement2 - Three techniques to be a better learnerAbdelkrim Berkous
油
This is an assignement for a coursera MOOC i'm sharing with you. Hope this will give you enough smile to encourage you to learn how to learn and to take benefit of this fabulous course !! Enjoy smile !!
Introduces the idea of "Just Enough Code" -- to add a 2- or 3-week module on Web coding into courses like editing, or design, or multimedia. There are 2 reasons to do this. One is to demystify how Web and mobile sites are made. The other is to open a door -- for (at least) some students -- to something they might really have an aptitude for, something they might really enjoy, if you just have a chance to explore it.
Multimedia Journalism Innovations in the ClassroomMindy McAdams
油
For a panel about "Innovation in Journalism Education": How teaching multimedia journalism has changed since 1999, and how I have adapted my classes and pushed my department to innovate. Journalism students don't have to be programmers, but they should have an opportunity to learn how to create new story forms for web and mobile platforms.
Summary of journalism faculty curriculum workshopMindy McAdams
油
At the end of a week-long workshop about updating the journalism curriculum at Rhodes University, we discussed a few specific types of assignments and assessment.
Introduction to crowdsourcing for journalists and journalism educators. Use of four cases and what we can learn from them. Three cases include maps; the fourth case does not.
Presentation about curriculum and required courses in journalism programs in the U.S. To lecturers at Rhodes dept. of Journalism and Media Studies, South Africa, June 2014.
Starter presentation in a weeklong workshop for journalism educators at Rhodes University, South Africa, in June 2014. We are trying to discover the needs of the journalism school as it goes forward with changes and updates in the curriculum. Purpose of this pres is to identify some areas where teaching needs to be focused, or refocused.
Blogs cover a very wide variety of styles and approaches. Blogs written by journalists, or housed on the websites of media organizations, are also widely varied. To understand blogs, blogging, and the audiences for blogs, we have to begin by looking at real blogs and comparing them. This presentation was given to 3rd-year journalism students at Rhodes University, South Africa.
Journalism's Future: Journalism, Not NewspapersMindy McAdams
油
Presentation to 150 journalists and editors at RCS MediaGroup S.p.A., Milan, Italy, May 2013. The goal was to inspire them to take their business forward into a mobile environment where competition comes from everywhere, not only the traditional rivals.
A university lecture for journalism students -- how to use the canvas element to add graphics and animation to Web pages. Updated April 2014. Basics for beginners. See also https://github.com/macloo/canvas
Updated with new exercises - March 2014. Introduction to jQuery (for journalism students) and review of the Code School "Try jQuery" course, Parts 1-3.
If you are using jQuery, you need to understand the Document Object Model and how it accounts for all the elements inside any HTML document or Web page.
An introduction to JavaScript that includes side-by-side comparisons with Python -- for journalism students. Based on the free JavaScript exercises/lessons at Codecademy: http://www.codecademy.com/tracks/javascript (Students in this course spent 4 weeks learning Python before they were introduced to JavaScript.)
An introduction to responsive design and Web frameworks -- for journalism students. Shows various examples. Includes links to resources. Updated February 2014.
Updated Feb. 9, 2014. This PPT is a review of color and fonts as used with HTML5 and CSS. Used in an undergraduate journalism class called Advanced Online Media Production.
Brief introduction to the Python programming language, for complete beginners who have never learned a programming language before. Resources and links are included.
Digital Storytelling for StateDept Exchange Alumni is a presentation about sharing stories through digital means. It discusses using platforms like 際際滷Share, Tumblr, Storify, SoundCloud, and Twitter to upload presentations, photos, curated social media posts, audio files, and microblog. The presentation provides examples of how each platform can be used and recommends signing up for a free Storify account to immediately create a "Storify". It concludes by asking how attendees will share their own stories and provides a link to all examples discussed.
This slides provide you the information regarding the sexually transmitted diseases as well as about the urinary tract infection. The presentation is based on the syllabus of Bachelor of Pharmacy semester 6 of subject name Pharmacology-III. The data is occupied from the high standard books and along with easy understanding of data.
Celine Caira presents at Women girls and AI Paving the way to a balanced digi...EduSkills OECD
油
Celine Caira, Economist & Policy Analyst, AI Unit of the OECD Division of Science, Technology and Innovation (STI), OECD presents at the OECD Webinar 'Women, girls and AI: Paving the way to a balanced digital future' on 28 March 2025. PPT by Lucia Russo, B辿n辿dicte Rispal and
Celine Caira OECD
Unit1 Inroduction to Internal Combustion EnginesNileshKumbhar21
油
Introduction of I. C. Engines, Types of engine, working of engine, Nomenclature of engine, Otto cycle, Diesel cycle Fuel air cycles Characteristics of fuel - air mixtures Actual cycles, Valve timing diagram for high and low speed engine, Port timing diagram
2025 Women Leaders Program - Award WinningSonia McDonald
油
Empower & Lead: Women in Leadership
Dive into our award-winning and dynamic programs designed to boost your confidence and equip you with bold tools and strategies. Unleash your unique leadership potential and lead with flair!
Elevate Your Game with the Women Leaders Program
Step up to the challenge with Sonia McDonalds dynamic leadership program, perfectly blending neuroscience, personal, and professional development. With over three decades of expertise in leadership and HR, Sonia has designed a program that adapts to your busy lifestyle, offering both virtual and in-house options. Explore ten robust modules equipped with an all-encompassing toolkit, infused with cutting-edge neuroscience to enhance your understanding of leadership dynamics. Choose from engaging monthly group coaching or personalized 1:1 sessions with Sonia.
If youre ready for a transformative journey focused on growth, neuroscience-backed courage, leadership, and freedom, this is your call to action. Join us and start leading like never before!
Transform Your Leadership.
Transform Your Life.
Women are underrepresented in key decision-making roles across almost all industries in the Australian workforce, women comprise only:
19.4% of CEOs
32.5% of key management positions
33% of board members
18% of board chairs.
ITS TIME FOR CHANGE. JOIN THE PROGRAM TODAY.
Maximise Your Leadership Skills
Achieve the best results for yourself, your team, and for the business.
Develop & Grow Your Courage
Build courageous habits to live the life you choose.
Enhance Your Career Progression
Step in, stand up, lead and get your seat at the Table.
https://soniamcdonald.com.au/women-leaders-program/
How to Install Odoo 18 with Pycharm - Odoo 18 際際滷sCeline George
油
In this slide well discuss the installation of odoo 18 with pycharm. Odoo 18 is a powerful business management software known for its enhanced features and ability to streamline operations. Built with Python 3.10+ for the backend and PostgreSQL as its database, it provides a reliable and efficient system.
How to Manage Purchase Order Approval in Odoo 18Celine George
油
In Odoo 18, you can set a minimum amount as a limit, and whenever an order comes above the limit, it requires the approval of the manager. In this slide, we are diving into the crucial aspect of procurement, which is managing purchase order approval.
Stages of combustion, Ignition lag, Flame propagation, Factors affecting flame
speed, Abnormal combustion, Influence of engine design and operating
variables on detonation, Fuel rating, Octane number, Fuel additives, HUCR,
Requirements of combustion chambers of S.I. Engines and its types.
Design approaches and ethical challenges in Artificial Intelligence tools for...Yannis
油
The recent technology of Generative Artificial Intelligence (GenAI) has undeniable advantages, especially with regard to improving the efficiency of all stakeholders in the education process.
At the same time, almost all responsible international organisations and experts in the field of education and educational technology point out a multitude of general ethical problems that need to be addressed. Many of these problems have already arisen in previous models of artificial intelligence or even in systems based on learning data, and several are appearing for the first time.
In this short contribution, we will briefly review some dimensions of ethical problems, both (a) the general ones related to trust, transparency, privacy, personal data security, accountability, environmental responsibility, bias, power imbalance, etc., and (b) the more directly related to teaching, learning, and education, such as students' critical thinking, the social role of education, the development of teachers' professional competences, etc.
In addition, the categorizations of possible service allocation to humans and AI tools, the human-centered approach to designing AI tools and learning data, as well as the more general design of ethics-aware applications and activities will be briefly presented. Finally, some short illustrative examples will be presented to set the basis for the debate in relation to ethical and other dilemmas.
Design approaches and ethical challenges in Artificial Intelligence tools for...Yannis
油
Learning Python - Week 4
1. Learn Python the Hard Way
Exercises 27 34
http://learnpythonthehardway.org/
2. New things in ex. 2734
Booleans: True, False, logic, operators
if elif else: Note the relationship to True
and False
loops: 2 kinds, for and while
lists and how to
create a new list
add and delete things from lists
find out whats in a list
3. How the Boolean AND works
There is a very long bungee jump above a deep
river gorge in Africa. You say:
If the bungee jump looks safe and it is cheap,
then I will do it.
4. How the Boolean AND works
If the bungee jump looks safe and it is cheap,
then I will do it.
looks safe = False (you wont do it)
is cheap = False (you wont do it)
Youll only do it if both conditions are TRUE.
5. How the Boolean OR works
There is a great party Tuesday night, but you are
in danger of failing your Wednesday test.
You say:
If I finish studying in time or the test is
canceled, then I will go to the party.
6. How the Boolean OR works
If I finish studying in time or the test is
canceled, then I will go to the party.
finish studying = True (can go)
test canceled = True (can go)
You can go if only one of the conditions is TRUE.
Or both. But one is enough.
7. and
True and True : True
True and False :
False
False and True :
False
False and False :
False
True or True : True
True or False : True
False or True : True
False or False : False
If the bungee jump looks safe and it is cheap,
then I will do it.
If I finish studying in time or the test is canceled, then I
will go to the party.
or
15. Loops
Every programming language has loops
A loop typically runs over and over until
something makes it stop (different from a
usual function, which runs only once)
The for loop is a standard kind of loop
for-loops can appear inside a function
Exercise 32
16. Loops
Standard syntax for starting a for-loop in
Python:
for fruit in fruits:
Exercise 32
Note that fruit could be any variable name, like x or a or cat.
In this case, there must already be a list named
fruits
(more about lists in a minute)
17. Loops
Also standard syntax (but different) for
starting a for-loop in Python:
for i in range(0, 9):
Exercise 32
In this case, we dont know the name of the list
yet. Or maybe this loop does not even use a list.
18. So, 2 different for-loops
for fruit in fruits:
print fruit
Exercise 32
for i in range(0, 9):
print "Hello!"
Like functions, loops must be indented. They can have many
lines. These are short just to make them simple.
19. while-loops
Exercise 33
The while loop is another standard kind of
loop
while-loops can appear inside a function
If you can figure out how to do what you want
with a for-loop, then use a for-loop.
If you must use a while-loop, be careful that it
will not run forever. If it does, its an infinite
loop (which is NOT good).
20. Lists
In many languages, a list is called an array
(but Zed says we should say list for Python)
Lists can be giganticthere can be thousands
of items in one list, or none
The standard format of a list in Python:
fruits = ['apples', 'oranges', 'pears',
'apricots']
Exercise 32
Note: If there are numbers in the list, they wont have quotes around them.
21. Loops and Lists
These two for-loops do exactly the same thing:
fruits = ['apples', 'oranges', 'pears',
'apricots']
for fruit in fruits:
print "A fruit of type: %s" % fruit
for y in fruits:
print "A fruit of type: %s" % y
Exercise 32
22. Lists
You actually already saw a list in Exercise 25,
when you did this:
words = stuff.split(' ')
After that, words contained a list:
['All', 'good', 'things', 'come', 'to',
'those', 'who', 'wait.']
You can use pop() and len() on any list
Exercise 32
23. Some things we do with lists
fruits.pop()
fruits.append("bananas")
fruits.extend(["plums", "mangoes"])
del fruits[2]
print fruits
With append() you can add only one item at a time to the list.
25. Items in lists
Exercise 34:
Items in lists can be counted.
Items in lists can be referenced by number, but the first
number is not 1 it is 0.
26. Back to while-loops
You might think the while-loops act a lot like
the for-loops that used range (and you would
be right)
However, the while-loops are different
The condition at the start of a while-loop
could test for something not numeric, such as
while we are not yet at the end of the file
Note: for-loops are very common, and
while-loops are less so (as Zed says: Usually a
for-loop is better)
Exercise 33
27. Learning while-loops
You really need to play with a lot of the extra
credit or study drills in Exercise 33 to get this
into your brain
I made four different .py files to test all the
comparisons that Zed recommends
If you play with this, you can really understand
how for-loops and while-loops are different
Exercise 33
29. A word of advice
So Exercise 31 is long, but easy. You might feel
like now its all getting easy
BUT WAIT! No, its not.
Exercise 32 introduces the for-loop.
Exercise 33 introduces the while-loop.
Exercise 34 introduces how we navigate
through the elements in a list.
These last 3 exercises are QUITE challenging!
30. Indents in Python
The usual way is to indent 4 spaces (not a tab
indent actually type 4 spaces)
If you accidentally type 3, or 5, or something
else, and all the others are 4, Python will
throw an error
Most programming languages require multiple
levels of indents, and these levels (and the
format of indenting) are important, so take
care
31. An example of multiple
indent levels within a
Python program
32. Learn Python the Hard Way
Exercises 27 34
(now we know some stuff)
#10: CODE EXAMPLE. LPTHW Exercise 28. Zed gives you lots of examples to play with. PLAY. It works!
#12: CODE EXAMPLE. LPTHW Exercises 29 and 30. Introduction to IF and IF ELSE.
#13: CODE EXAMPLE. LPTHW Exercises 29 and 30. Introduction to IF and IF ELSE.
#14: CODE EXAMPLE. LPTHW Exercise 30. Note that when the condition is met, none of the other elifs after that are executed. They do not run.
#16: NOTE: Im skipping over Exercise 31 because it is just more of the same from Exercise 30.
#20: Just a quick hop forward to exercise 33 we will come back to it later.
#23: Review LPTHW Exercise 25 and try to play with lists, using things you did in Ex. 25. WHY DID WE SPLIT? By turning freetext into a list, we can examine it in all kinds of ways. We are sort (alphabetical order), pop() words off the ends, move words from one list to another. And more.
#25: CODE EXAMPLE. LPTHW Exercise 32. Adding range allows you to make a different kind of for loop, with a limited number of times that it will run. This version (0, 100), would run 100 times, except that I built in a break.
#26: LPTHW Exercise 34 -- The most important thing to understand about this is that you can pluck out any item in a list, but you must remember that the first one is item 0 and not item 1.
#29: LPTHW Exercise 33 -- notice how I write comments for myself. I find them to be VERY helpful to me when I look at the code weeks or months later.
#30: These things are really important in programming AND you will see all of them AGAIN in JavaScript and jQuery, after Spring Break. So its in your best interest to spend time with them NOW and really try to understand them.
#32: This comes from an example in the book Visualize This, by Nathan Yau, pp. 288ff. The exercise is to color-code a U.S. map using data on unemployment in each U.S. county.