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.
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.
The lesson covers lists in Python including an introduction to lists, list operations like enumeration and mutability, and challenges using lists like creating a contacts list program and times table application. Various list methods are demonstrated and discussed such as sorting, appending, searching by index, and removing elements from a list. The anatomy and uses of lists in computing and programming are explored.
This document discusses lists, dictionaries, arrays, and control flow statements like loops and conditionals in programming. It provides examples of lists, dictionaries, and arrays, explaining the differences between them. Lists are ordered and allow indexed retrieval, while dictionaries store key-value pairs. Arrays can use numeric or string indices. The document also discusses loops like for, while, and foreach loops used to repeat actions, and conditions used to control program flow. Students are assigned to identify examples of lists, arrays, and looping logic in code samples.
The document provides an overview of Python data structures, functions, and recursion. It outlines topics including lists, dictionaries, tuples, sets, functions, recursion, and common errors. The aim is to equip students with a strong foundation in Python programming with a focus on understanding and applying fundamental concepts through programming tasks and examples. Key data structures are explained, such as how to create, access, modify, and delete elements from lists and tuples. Functions are also covered, including defining functions, passing arguments, and common errors.
This document discusses various Python data structures including lists, tuples, and dictionaries. It provides examples of how to use each data structure, such as appending and removing items from lists, indexing and slicing sequences, and adding/deleting key-value pairs from dictionaries. The document also covers Python references, console input using raw_input() and input(), and introduces objects and classes.
This document provides an introduction to Python programming. It discusses that Python is an object-oriented programming language created by Guido van Rossum in 1989. It then covers various features of Python like being versatile, having high-level programming, garbage collection, and more. It also lists several applications of Python like building websites, games, performing machine learning, and scientific computing. The document proceeds to explain concepts like variables, data types, operators, control flow statements, and various data structures in Python like lists.
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.
This document provides information about a Python Programming course being taught in the first semester of an IT program. It includes the course title, code, class details, faculty name, date, course outcomes, topics covered, and module details. The module discusses Python container data types like lists, tuples, sets, and dictionaries. It provides examples and comparisons of the different data types. The document also covers topics like tuple comprehension, iterators, iterables, and dictionary comprehension.
This document provides an overview of key Python concepts that will be covered in a Python basics course, including syntax, variables, data types, operators, control flows, functions, lists, dictionaries, sets, exceptions, and strings. The course will introduce students to Python programming basics like creating variables, working with common data types, using operators and control structures, defining functions, and manipulating common data structures. It will also cover more advanced topics such as exception handling, unpacking arguments, and string formatting.
Processing data with Python, using standard library modules you (probably) ne...gjcross
油
Tutorial #2 from PyCon AU 2012
You have data.
You have Python.
You also have a lot of choices about the best way to work with that data...
Ever wondered when you would use a tuple, list, dictionary, set, ordered dictionary, bucket, queue, counter or named tuple? Phew!
Do you know when to use a loop, iterator or generator to work through a data container?
Why are there so many different "containers" to hold data?
What are the best ways to work with these data containers?
This tutorial will give you all the basics to effectively working with data containers and iterators in Python. Along the way we will cover some very useful modules from the standard library that you may not have used before and will end up wondering how you ever did without them.
This tutorial is aimed at Python beginners. Bring along your laptop so you can interactively work through some of the examples in the tutorial. If you can, install ipython (http://ipython.org/) as we will use it for the demonstrations.
Strings in Python are sequence of characters that are immutable. They can be indexed, sliced, concatenated and their cases can be changed. Common string methods include find, count, strip, replace, capitalize etc. Lists are mutable sequences that can contain elements of different types. Common list operations include append, insert, pop, remove, sort etc. Tuples are immutable sequences that can be nested and support operations like slicing, indexing, unpacking etc. Sets are unordered collections of unique elements that support membership testing and set operations. Dictionaries are mutable mappings of unique keys to values that support various operations like get, update, keys, values etc.
This document provides an agenda and overview for a Python tutorial presented over multiple sessions. The first session introduces Python and demonstrates how to use the Python interpreter. The second session covers basic Python data structures like lists, modules, input/output, and exceptions. An optional third session discusses unit testing. The document explains that Python is an easy to learn yet powerful programming language that supports object-oriented programming and high-level data structures in an interpreted, dynamic environment.
The lecture recaps programming concepts covered so far like variables, data types, selection statements, and functions. It then presents a "Test Generator" case study to demonstrate designing, coding, and enhancing a program through multiple versions. The case study involves generating random math tests with addition or subtraction problems for students. Pseudocode is developed for each version to plan the program logic before coding.
A for loop is probably the most common type of loop in Python. A for loop will select items from any iterable. In Python an iterable is any container (list, tuple, set, dictionary), as well as many other important objects such as generator function, generator expressions, the results of builtin functions such as filter, map, range and many other items.
The document provides an introduction to programming in Python. It discusses how Python can be used for web development, desktop applications, data science, machine learning, and more. It also covers executing Python programs, reading keyboard input, decision making and loops in Python, standard data types like numbers, strings, lists, tuples and dictionaries. Additionally, it describes functions, opening and reading/writing files, regular expressions, and provides examples of SQLite database connections in Python projects.
This document provides an overview of Python programming concepts for a summer engineering program. It covers setting up Python environments, basic syntax like indentation and variable types, arithmetic and logical operators, conditional statements like if/else and for/while loops, functions, error handling, file input/output, and two assignment tasks involving computing prices from stock and writing/reading to a file.
This document provides an outline and overview of a presentation on learning Python for beginners. The presentation covers what Python is, why it is useful, how to install it and common editors used. It then discusses Python variables, data types, operators, strings, lists, tuples, dictionaries, conditional statements, looping statements and real-world applications. Examples are provided throughout to demonstrate key Python concepts and how to implement various features like functions, methods and control flow. The goal is to give attendees an introduction to the Python language syntax and capabilities.
PHP is a server-side scripting language commonly used for web development. It allows developers to add dynamic content to websites. PHP scripts can output HTML, manipulate files, connect to databases, and more. The language contains many built-in functions for working with strings, arrays, files, and other common tasks. PHP code is embedded within HTML and executed by the web server before the page is sent to the browser. This allows dynamic content and functionality to be added to websites through PHP.
This document provides an introduction to Python, including:
- Python is an open source, high-level programming language that is dynamic typed and includes many standard modules.
- It can be used for GIS tasks like interfacing with ArcGIS and automating geoprocessing workflows.
- Key Python concepts covered include strings, lists, tuples, dictionaries, conditionals, loops, modules, and error handling.
- The document demonstrates how to use the Python interactive shell and development environments like IDLE.
This document provides an introduction to Python, including:
- Python is an open source, high-level programming language that is dynamic typed and includes many standard modules.
- It can be used for GIS tasks like interfacing with ArcGIS and automating geoprocessing workflows.
- Key Python concepts covered include strings, lists, tuples, dictionaries, conditionals, loops, modules, and error handling.
- The document demonstrates how to use the Python IDLE development environment and provides additional resources for learning Python.
The document provides an overview of the Python programming language. It discusses what Python is, its history and origins, why it is popular, common applications, and who uses it. It then covers running Python, variables, data types, input/output functions, conditional and looping statements. Specific Python concepts explained in more detail include variables, common data types (numeric, string, list, tuple, dictionary, Boolean), functions for lists and tuples, and if/else and for/while loop statements. The document is intended as an introductory guide to Python.
This document provides a cheat sheet for Python basics. It begins with an introduction to Python and its advantages. It then covers key Python data types like strings, integers, floats, lists, tuples, and dictionaries. It explains how to define variables, functions, conditional statements, and loops. The document also demonstrates built-in functions, methods for manipulating common data structures, and other Python programming concepts in a concise and easy to understand manner.
A MAC URISA event. This talk is oriented to GIS users looking to learn more about the Python programming language. The Python language is incorporated into many GIS applications. Python also has a considerable installation base, with many freely available modules that help developers extend their software to do more.
The beginning third of the talk discusses the history and syntax of the language, along with why a GIS specialist would want to learn how to use the language. The middle of the talk discusses how Python is integrated with the ESRI ArcGIS Desktop suite. The final portion of the talk discusses two Python projects and how they can be used to extend your GIS capabilities and improve efficiency.
Recording of the talk: https://www.youtube.com/watch?v=F1_FqvbXHb4
This lecture covers data types and selection statements in programming. It discusses common data types like integers, floats, strings and booleans. It also explains weak and strong typing, implicit and explicit type conversion. The lecture then covers selection statements like if-then, if-then-else and else-if statements which allow code to execute conditionally based on boolean expressions. It provides examples of comparison operators and logical operators used in boolean expressions.
This lecture covers files and exception handling in Python. It discusses opening, reading from, and writing to files. The key steps are opening the file, using it (reading or writing data), and closing it. Exceptions allow programs to handle and respond to errors and unexpected situations gracefully using try/except blocks. The case study demonstrates generating math tests randomly and writing the output to a file rather than displaying it on screen. This improves the program by storing the results for later use.
More Related Content
Similar to ProgFund_Lecture_3_Data_Structures_and_Iteration-1.pdf (20)
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.
This document provides information about a Python Programming course being taught in the first semester of an IT program. It includes the course title, code, class details, faculty name, date, course outcomes, topics covered, and module details. The module discusses Python container data types like lists, tuples, sets, and dictionaries. It provides examples and comparisons of the different data types. The document also covers topics like tuple comprehension, iterators, iterables, and dictionary comprehension.
This document provides an overview of key Python concepts that will be covered in a Python basics course, including syntax, variables, data types, operators, control flows, functions, lists, dictionaries, sets, exceptions, and strings. The course will introduce students to Python programming basics like creating variables, working with common data types, using operators and control structures, defining functions, and manipulating common data structures. It will also cover more advanced topics such as exception handling, unpacking arguments, and string formatting.
Processing data with Python, using standard library modules you (probably) ne...gjcross
油
Tutorial #2 from PyCon AU 2012
You have data.
You have Python.
You also have a lot of choices about the best way to work with that data...
Ever wondered when you would use a tuple, list, dictionary, set, ordered dictionary, bucket, queue, counter or named tuple? Phew!
Do you know when to use a loop, iterator or generator to work through a data container?
Why are there so many different "containers" to hold data?
What are the best ways to work with these data containers?
This tutorial will give you all the basics to effectively working with data containers and iterators in Python. Along the way we will cover some very useful modules from the standard library that you may not have used before and will end up wondering how you ever did without them.
This tutorial is aimed at Python beginners. Bring along your laptop so you can interactively work through some of the examples in the tutorial. If you can, install ipython (http://ipython.org/) as we will use it for the demonstrations.
Strings in Python are sequence of characters that are immutable. They can be indexed, sliced, concatenated and their cases can be changed. Common string methods include find, count, strip, replace, capitalize etc. Lists are mutable sequences that can contain elements of different types. Common list operations include append, insert, pop, remove, sort etc. Tuples are immutable sequences that can be nested and support operations like slicing, indexing, unpacking etc. Sets are unordered collections of unique elements that support membership testing and set operations. Dictionaries are mutable mappings of unique keys to values that support various operations like get, update, keys, values etc.
This document provides an agenda and overview for a Python tutorial presented over multiple sessions. The first session introduces Python and demonstrates how to use the Python interpreter. The second session covers basic Python data structures like lists, modules, input/output, and exceptions. An optional third session discusses unit testing. The document explains that Python is an easy to learn yet powerful programming language that supports object-oriented programming and high-level data structures in an interpreted, dynamic environment.
The lecture recaps programming concepts covered so far like variables, data types, selection statements, and functions. It then presents a "Test Generator" case study to demonstrate designing, coding, and enhancing a program through multiple versions. The case study involves generating random math tests with addition or subtraction problems for students. Pseudocode is developed for each version to plan the program logic before coding.
A for loop is probably the most common type of loop in Python. A for loop will select items from any iterable. In Python an iterable is any container (list, tuple, set, dictionary), as well as many other important objects such as generator function, generator expressions, the results of builtin functions such as filter, map, range and many other items.
The document provides an introduction to programming in Python. It discusses how Python can be used for web development, desktop applications, data science, machine learning, and more. It also covers executing Python programs, reading keyboard input, decision making and loops in Python, standard data types like numbers, strings, lists, tuples and dictionaries. Additionally, it describes functions, opening and reading/writing files, regular expressions, and provides examples of SQLite database connections in Python projects.
This document provides an overview of Python programming concepts for a summer engineering program. It covers setting up Python environments, basic syntax like indentation and variable types, arithmetic and logical operators, conditional statements like if/else and for/while loops, functions, error handling, file input/output, and two assignment tasks involving computing prices from stock and writing/reading to a file.
This document provides an outline and overview of a presentation on learning Python for beginners. The presentation covers what Python is, why it is useful, how to install it and common editors used. It then discusses Python variables, data types, operators, strings, lists, tuples, dictionaries, conditional statements, looping statements and real-world applications. Examples are provided throughout to demonstrate key Python concepts and how to implement various features like functions, methods and control flow. The goal is to give attendees an introduction to the Python language syntax and capabilities.
PHP is a server-side scripting language commonly used for web development. It allows developers to add dynamic content to websites. PHP scripts can output HTML, manipulate files, connect to databases, and more. The language contains many built-in functions for working with strings, arrays, files, and other common tasks. PHP code is embedded within HTML and executed by the web server before the page is sent to the browser. This allows dynamic content and functionality to be added to websites through PHP.
This document provides an introduction to Python, including:
- Python is an open source, high-level programming language that is dynamic typed and includes many standard modules.
- It can be used for GIS tasks like interfacing with ArcGIS and automating geoprocessing workflows.
- Key Python concepts covered include strings, lists, tuples, dictionaries, conditionals, loops, modules, and error handling.
- The document demonstrates how to use the Python interactive shell and development environments like IDLE.
This document provides an introduction to Python, including:
- Python is an open source, high-level programming language that is dynamic typed and includes many standard modules.
- It can be used for GIS tasks like interfacing with ArcGIS and automating geoprocessing workflows.
- Key Python concepts covered include strings, lists, tuples, dictionaries, conditionals, loops, modules, and error handling.
- The document demonstrates how to use the Python IDLE development environment and provides additional resources for learning Python.
The document provides an overview of the Python programming language. It discusses what Python is, its history and origins, why it is popular, common applications, and who uses it. It then covers running Python, variables, data types, input/output functions, conditional and looping statements. Specific Python concepts explained in more detail include variables, common data types (numeric, string, list, tuple, dictionary, Boolean), functions for lists and tuples, and if/else and for/while loop statements. The document is intended as an introductory guide to Python.
This document provides a cheat sheet for Python basics. It begins with an introduction to Python and its advantages. It then covers key Python data types like strings, integers, floats, lists, tuples, and dictionaries. It explains how to define variables, functions, conditional statements, and loops. The document also demonstrates built-in functions, methods for manipulating common data structures, and other Python programming concepts in a concise and easy to understand manner.
A MAC URISA event. This talk is oriented to GIS users looking to learn more about the Python programming language. The Python language is incorporated into many GIS applications. Python also has a considerable installation base, with many freely available modules that help developers extend their software to do more.
The beginning third of the talk discusses the history and syntax of the language, along with why a GIS specialist would want to learn how to use the language. The middle of the talk discusses how Python is integrated with the ESRI ArcGIS Desktop suite. The final portion of the talk discusses two Python projects and how they can be used to extend your GIS capabilities and improve efficiency.
Recording of the talk: https://www.youtube.com/watch?v=F1_FqvbXHb4
This lecture covers data types and selection statements in programming. It discusses common data types like integers, floats, strings and booleans. It also explains weak and strong typing, implicit and explicit type conversion. The lecture then covers selection statements like if-then, if-then-else and else-if statements which allow code to execute conditionally based on boolean expressions. It provides examples of comparison operators and logical operators used in boolean expressions.
This lecture covers files and exception handling in Python. It discusses opening, reading from, and writing to files. The key steps are opening the file, using it (reading or writing data), and closing it. Exceptions allow programs to handle and respond to errors and unexpected situations gracefully using try/except blocks. The case study demonstrates generating math tests randomly and writing the output to a file rather than displaying it on screen. This improves the program by storing the results for later use.
This lecture covers functions and modules in Python. It discusses built-in functions, writing user-defined functions, function parameters and return values, and scope. It also discusses modules as a way to organize Python code and introduces some of Python's standard library modules like math and random. The key points are:
1) Functions allow for code reuse and abstraction by encapsulating repeatable processes. Built-in functions perform common tasks while user-defined functions can be created for custom tasks.
2) Functions are defined using def and have parameters to pass in inputs and return values to produce outputs. Variables inside functions have local scope while global variables can be accessed everywhere.
3) Modules help structure Python programs and provide
This document provides an introduction to C programming, including:
- A brief history of C and its advantages/disadvantages.
- An explanation of a simple "Hello World" program to demonstrate basic C syntax.
- Guidance on coding style best practices like indentation, spacing, and commenting code to improve readability and understanding.
This lecture introduces programming fundamentals and Python. It discusses what programming is, the process of translating source code into machine-readable instructions, and program design using pseudocode and flowcharts. Program design tools like pseudocode and flowcharts allow programmers to plan programs' logic and structure before writing the actual code. The lecture also provides an overview of Python syntax and variables.
This document provides an introduction to programming fundamentals and algorithms. It defines an algorithm as a well-ordered collection of unambiguous and effectively computable operations that produces a result and halts in a finite amount of time. The document discusses the history and purpose of programming, and defines computer science as the study of algorithms. It explains the three components that make up all algorithms: sequence, selection, and iteration. The document outlines the process for developing an algorithmic solution, including defining the problem, creating a high-level algorithm, defining inputs/outputs, testing the algorithm, and coding it.
Introduction to Forensic Research Digital ForensicsSaanviMisar
油
Digital Forensics: Analyzing Cyber Crimes & Investigations
This comprehensive guide on Digital Forensics covers key concepts, tools, and methodologies used in investigating cyber crimes. It explores forensic techniques, evidence collection, data recovery, malware analysis, and incident response with real-world applications.
Topics Covered:
Introduction to Digital Forensics
Cybercrime Investigation Process
Digital Evidence & Chain of Custody
Popular Forensic Tools (Autopsy, EnCase, FTK)
Memory & Network Forensics
Challenges in Modern Cyber Investigations
Ideal for students, cybersecurity professionals, and forensic analysts, this resource provides valuable insights into digital investigations.
Intro of Airport Engg..pptx-Definition of airport engineering and airport pla...Priyanka Dange
油
Definition of airport engineering and airport planning, Types of surveys required for airport site, Factors affecting the selection of site for Airport
Agentic architectures and workflows @ AIware Bootcamp 2024Keheliya Gallaba
油
In this talk, I dove deep into the world of agents, starting with some history of the term. We explored the core properties of agents, like autonomy, social ability, reactiveness, and proactiveness, and how these translate into the agentic systems we're seeing today. I broke down the anatomy of a foundation model-based agent, discussing environments, memory types (procedural, semantic, and episodic), and the role of external tools . We also looked at how these agents reason and plan, and even briefly touched on the concept of "theory of mind". Finally, I walked through some examples from research papers, like generative agents and software developer agents. I wrapped up with a look at the open research challenges, including control, human-agent interfaces, and evaluation.
Video recording of the talk: https://www.youtube.com/watch?v=fuag-KiPijQ
Welcome to the April 2025 edition of WIPAC Monthly, the magazine brought to you by the LInkedIn Group Water Industry Process Automation & Control.
In this month's issue, along with all of the industries news we have a number of great articles for your edification
The first article is my annual piece looking behind the storm overflow numbers that are published each year to go into a bit more depth and look at what the numbers are actually saying.
The second article is a taster of what people will be seeing at the SWAN Annual Conference next month in Berlin and looks at the use of fibre-optic cable for leak detection and how its a technology we should be using more of
The third article, by Rob Stevens, looks at what the options are for the Continuous Water Quality Monitoring that the English Water Companies will be installing over the next year and the need to ensure that we install the right technology from the start.
Hope you enjoy the current edition,
Oliver
Security requirements are often treated as generic lists of features, neglecting system-specific needs and the attacker's perspective. A systematic approach to security requirements engineering is crucial to avoid this problem.
Requirements engineering defects can cost 10 to 200 times more to correct once the system is operational. Software development takes place in a dynamic environment, causing requirements to constantly change.
Virtual Power plants-Cleantech-RevolutionAshoka Saket
油
VPPs are virtual aggregations of distributed energy resources, such as energy storage, solar panels, and wind turbines, that can be controlled and optimized in real-time to provide grid services.
2. This Lecture
Data structures
Concept of arrays
Lists and tuples in Python
Interacting with data structures
Iteration (loops)
Concept of iteration
While and do-while loops
Common loop errors
Break and continue
For loops (counter-controlled and C-style)
Loops and data structures
2
3. Textbook
Starting Out with Python, 4th Edition (Global)
Tony Gaddis
Reading the chapter(s) is required
Read the indicated chapter(s) before class
This week covers the following textbook chapter(s):
Chapter 4 Repetition Structures
Entire chapter
Chapter 7 Lists and Tuples
You can skip 7.10 and the parts of 7.7 that involve functions and files
3
5. Data Structures
We have previously covered the concepts of
Variables, allowing you to store data and reference it later
Data types, categories of data that allow the programming language to understand
the data and make use of it properly
So far our variables have contained a single piece of data, which has one data type,
e.g. value = 10 is an integer
A data structure allows multiple pieces of data to be stored in some form of
organised structure
This structure may be as simple as a collection of values, but can be much more
complex (ordering, names, hierarchy)
Like a data type, a data structure defines what the language can do with it
adding/removing items, sorting them, etc.
A variable can refer to a data structure, i.e. a variable can contain many values,
implementing a data structure the language knows
5
6. Arrays
One of the most common data structures is an array
It is simply an ordered collection of values
Ordered refers to the fact that the items in the array have a set position the third item in
the array will always refer to the same value (assuming the arrays content has not changed)
The values themselves are not necessarily ordered the first item could contain a value of 5
and the second could contain a value of 2
Different languages implement arrays differently:
Number or value of items may be fixed (immutable), or may be able to change
(mutable)
Data types of items in an array may need to all be the same type, or can be different
Some languages allow either, or provide different data structures for either approach
6
7. Arrays
By storing multiple values in a data structure (e.g. an array), you can do things
that would not be possible or convenient if you had stored the values in separate
variables, e.g.
Sort the values, count them or identify duplicate values
Determine the maximum or minimum value
Determine if a certain value exists in the array
You can refer to an item within an array by its index, i.e. the position of the item
in the array, using [] after the variable
The index starts at 0, so an array of 5 values has indexes 0-4
values = (10, 50, 20, 15, 30)
index: 0 1 2 3 4
values[0] (value of 10)
values[3] (value of 15)
7
8. Terrible Programmer Joke Break!
Why did the programmer quit his job?
Because he didnt get arrays.
8
9. Lists and Tuples
Python offers two array-like data structures, lists and tuples. Lists and tuples
have things in common. They are both
Ordered (the items in a list/tuple have a set position)
Able to contain items of different data types (not often needed)
Able to reference an item by its index, e.g. values[4]
They differ in some important ways:
Lists are
Created with [], e.g. names = ['Sam', 'Mary', 'John']
Mutable, i.e. you can add, remove or change items
Tuples are
Created with (), e.g. date = (2015, 12, 25)
Immutable, i.e. you cannot add, remove or change items
9
10. Referring to Items
As mentioned, variable[index] to refers to an item
values[1] # refer to the value at index 1
values[1] = 7 # change value at index 1 (lists only tuples are immutable!)
Negative indexes refer to items from the end
values[-2] # refer to second last item
You can even refer to multiple items at once (known as slicing)
values[1:3] # items from index 1 to 3 (index 1 & 2)
values[:3] # items up to index 3 (index 0, 1 & 2)
values[3:] # items from index 3 onwards
In Python you can do all this (except changing values) on strings, since strings
are essentially just sequences of characters i.e. a tuple of characters
word = 'example'
10
word[3] 'm' word[2:5] 'amp'
11. Referring to Items
It may help to think of the index as the left edge of a box containing the item
i.e. The index is between the items
11
h o r s e
0
values =
values[2] # r
values[-2] # s
values[5] # error!
1 2 3 4
-5 -4 -3 -2 -1
values[1:3] # or
values[:3] # hor
values[3:] # se
5
12. List Methods
There are a number of methods (similar to functions) you can use to interact
with and manipulate lists:
my_list = [1, 42, -9000, 3.14] # create a list of 4 numbers
[1, 42, -9000, 3.14]
len(my_list) # count how many items are in my_list
4
my_list.append(42) # add an item of 42 to the end of my_list
[1, 42, -9000, 3.14, 42]
my_list.count(42) # count how many items in my_list are equal to 42
2
my_list.insert(2, 18) # insert an item of 18 at index 2 of my_list
[1, 42, 18, -9000, 3.14, 42]
my_list.index(42) # return the index of first item with a value of 42
1
my_list.remove(42) # remove the first item with a value of 42
[1, 18, -9000, 3.14, 42]
del my_list[1] # remove the item with an index of 1 from my_list
[1, -9000, 3.14, 42]
my_list.sort() # sort the items in my_list
[-9000, 1, 3.14, 42]
Python
12
Lists are mutable.
Things that change the
content of a list do so by
changing the list itself.
They do not return a
modified list.
13. The in Comparison Operator
We discussed comparison operators last week:
Operators which allow you to compare values and receive a True or False result,
e.g. ==, !=, >, <
The in comparison operator allows you to check if a value exists in a data
structure (e.g. a list or tuple or even a string)
You can use not in to check if a value is not in a data structure
Other languages typically either have a function, such as PHPs in_array(),
or require you to iterate over each item and check it using an if-then statement
word = 'example'
if 'x' not in word:
print('Word does not contain an "x"')
else:
print('Word contains an "x"')
Python
numbers = [2, 4, 6, 8]
if 4 in numbers:
print('4 is in the list')
else:
print('4 is not in the list')
Python
13
14. Data Structures Summary
Data structures allow you to store multiple pieces of data as items in a single unit,
in an organised way
An array is simply an ordered collection of values
You can refer to an item in an array by its index, e.g. values[3]
Python provides two array-like data structures:
A list is mutable (changeable) and created with []
A tuple is immutable (fixed) and created with ()
Strings share a number of similarities with these data structures
Data structures allow you to manipulate collections of values
Sorting, counting, searching, determining min/max, etc.
Data structures are often iterated through covered next!
14
16. Iteration
Last week we introduced selection statements
Statements that let your code choose between different paths
Selection statements like if-then are control structures
Statements that control the flow of execution of your code
i.e. Statements that make the code deviate from the basic flow of top-to-bottom
execution of statements (known as sequence)
Loops, or iteration statements, are also control structures
Loops allow the program to repeatedly run a block of code
The code that is repeatedly run is known as the body of the loop
Loops are typically controlled by either a counter or a condition
i.e. They run a certain number of times, or while a condition is met
Python offers two loop statements while and for
16
17. While Loops
A while loop is condition-controlled loop
It repeats the loop body while the loop condition is True
The condition is checked before each repetition of the body
If the condition is False, the body is not run and the loop ends
Most languages:
while (<loop condition>)
{
<loop body>
}
Python:
while <loop condition>:
<loop body>
The loop condition is just
a boolean expression,
covered last lecture
17
18. While Loops
The loop body should do something that will eventually make the condition False,
otherwise the loop will never end
If the condition is initially False, the loop body is never run
SET count to 10
WHILE count >= 0
PRINT count
SET count to count 1
PRINT 'Lift-off!'
Pseudocode
condition
True False
loop body
count = 10
while count >= 0:
print(count)
count = count - 1
print('Lift-off!')
Python
18
19. Common Loop Errors
These are some common mistakes people make with loops:
Off by one errors in the loop condition
Incorrect statements in or out the loop body
Repeating something that only needs to run once, or vice-versa!
19
count = 10
while count > 0:
print(count)
count = count - 1
print('Lift-off!')
Python Often occurs when the condition involves <, >, <= or >=
This loop doesnt print 0 since the condition needs count
to be greater than 0
count = 10
while count >= 0:
print(count)
count = count - 1
print('Lift-off!')
Python count = 10
while count >= 0:
print(count)
count = count - 1
print('Lift-off!')
Python
Infinite loop printing 10! Prints Lift-off! after each number!
20. Terrible Programmer Joke Break!
Why did the programmer get stuck in the shower?
Because the instructions on the shampoo bottle said Lather, Rinse, Repeat
20
21. While Example 1
Repeatedly prompt for numbers to add until 0 is entered:
The number variable must exist before the loop for the condition to be valid,
so weve given it a value of None A special value representing nothing
Example of program execution:
Enter a number (0 to exit):
Enter a number (0 to exit):
Enter a number (0 to exit):
Enter a number (0 to exit):
The total is: 15
21
number = None # initialise number with None to leave it empty
total = 0 # initialise total to 0 so we can add to it later
while number != 0:
number = int(input('Enter a number (0 to exit): '))
total = total + number # add the entered number to the total
print('The total is:', total)
Python
5
2
8
0
22. While Example 2
Repeatedly prompt for text and concatenate it until the length of the
concatenated text exceeds 10 characters:
Example of program execution:
Type something:
The text is now 'woof', length of 4
Type something:
The text is now 'woofmeow', length of 8
Type something:
The text is now 'woofmeowsquawk', length of 14
22
Scanner scanner = new Scanner(System.in);
String text = ""; // create empty string variable called 'text'
while (text.length() <= 10) // loop while 'text' length is up to 10 characters
{
System.out.println("Type something: ");
text = text + scanner.next(); // get input and concatenate it to 'text'
// print 'text' and its length
System.out.print("The text is now '" + text + "', length of " + text.length());
}
Java
woof
meow
squawk
23. Break and Continue
Two special statements can be used in a loop body:
break ends the loop right away, moving on to the next statement after the loop
continue skips the rest of the loop body and then continues with the next iteration
(check the condition, run loop body if True)
These statements are always used within a selection statement (e.g. an if-then)
in the body of a loop
i.e. To break out of the loop or skip the body if a certain condition is met
Break and continue can be used in any type of loop (not just a while loop), and
the commands are supported by just about every language
Break can be used to end an otherwise infinite/endless loop
23
24. Break Example 1
This previous example
Could be rewritten using break and an infinite loop:
24
number = None # initialise number with None to leave it empty
total = 0 # initialise total to 0 so we can add to it later
while number != 0:
number = int(input('Enter a number (0 to exit): '))
total = total + number # add the entered number to the total
print('The total is:', total)
Python
total = 0 # initialise total to 0 so we can add to it later
while True: # True will always be True infinite loop
number = int(input('Enter a number (0 to exit): '))
if number == 0:
break # if the number is 0, end the loop immediately
total = total + number # add the entered number to the total
print('The total is:', total)
Python
25. Break Example 2
Break can be used to control an infinite loop exiting when a condition is met:
25
while True:
value = input('Enter a value in pounds (type "x" to exit): ')
if value == 'x':
break
result = float(value) * 0.454
print(value, 'pounds is', result, 'kilograms')
Python
Endless Loop
Prompt the user for a value in pounds (x to exit)
If value is 'x'
Break out of loop
Multiply the value by 0.454
Show the result on the screen
Pseudocode
26. Continue Example 1
We can enhance the previous example so that it ignores invalid input
(anything that isnt a number or x):
If an x is entered, break is used to exit the loop
If anything other than a number is entered, an error message is shown continue is
used to skip back to the prompt
26
Endless Loop
Prompt the user for value in pounds (x to exit)
If value is 'x'
Break out of loop
If value is not a number
Print 'Invalid input - Try again' message
Continue to next iteration of loop
Multiply the value by 0.454
Show the result on the screen
Pseudocode
27. Continue Example 1
We can enhance the previous example so that it ignores invalid input
(anything that isnt a number or x):
The pseudocode might not match the exact look of the actual code, but the logic of the
design has been implemented
27
while True:
value = input('Enter a value in pounds (type 'x' to exit): ')
if value == 'x':
break
try:
result = float(value) * 0.454
except ValueError:
print('Invalid input - Try again.')
continue
print(value, 'pounds is', result, 'kilograms')
Python
Try to execute this
statement
Do this if an error occurs
when trying to convert the
value to a float
28. Continue Example 2
Continue can be an elegant way to skip an iteration of a loop when something is
irrelevant or inapplicable:
28
// process student results
Open student result file
For each student
If exam status is 'Deferred'
Continue to next student
Calculate student's final grade
Show student's final grade
Pseudocode
// print timetable of units
Retrieve unit information
For each unit
If unit is online
Continue to next unit
Add unit to timetable
Show timetable
Pseudocode
29. Validating Input using While, Try/Except and Break
An endless while loop with a try/except and a break can be used to ensure that
input is of an appropriate data type:
The loop is endless, so a break is needed to end it
The code attempts to convert the input to a float
If this fails (due to the input not being numeric), the exception occurs and the error message
is printed, after which the end of the loop body is reached and the loop repeats
If this succeeds (due to the input being a number), the code continues to the break
statement and the loop ends, allowing the program to continue past the loop
29
while True:
try:
value = float(input('Enter a number: '))
break
except ValueError:
print('Invalid input. Enter a number.')
Python
30. Do-While Loops
While loops test the condition before running the loop body
If the condition is False when the loop is first reached, the loop body is never run
which is perfectly fine in most situations
You may encounter a situation where you want the body of the loop to run at least
once, even if the condition is False
Do-While loops check the condition after the loop body
Hence, the body is run once even if the condition is False
Do-While Syntax: do
{
<loop body>
}
while (<loop condition>);
30
31. While vs. Do-While
Compare the flowcharts of a while loop and a do-while loop
It is quite rare to need a do-while rather than a while
The behaviour of a do-while can be replicated using a while
For this reason, Python does not provide a do-while loop
See the next slide for the code used when one is needed
While: Do-While:
condition
True
False
loop body
condition
True False
loop body
32
32. While vs. Do-While
A do-while loop can be replicated using a while loop and an if-then:
The logic behind this is very straight forward:
The loop is infinite (True will always be True)
The last statement of the loop body is an if-then statement which uses break to end
the loop if the condition is met
The first version breaks if the condition is True, so instead of a condition that must be True
in order to continue the loop, you write one that ends it think of it as a do-until loop
The second version uses not to negate the condition, so you can write a normal condition
(i.e. one that will repeat the loop body if it is True)
while True:
<loop body>
if not(<loop condition>):
break
while True:
<loop body>
if <break condition>:
break
33
33. For Loops
A for loop is present in almost every language
Typically used when the number of iterations is known in advance, i.e. it needs to loop
a certain number of times, or once for each item in a data structure
Hence, for loops are usually counter-controlled
For loops come in two main styles:
A counter-controlled loop which works its way through a sequence (Fortran, ALGOL,
Ada, BASIC, Ruby, Python)
The original style of for loops, which are often thought of / named a for-each loop
A generic condition-controlled loop which is usually used in a counter-controlled
fashion (C, C++, Java, PHP, JavaScript)
Very common, and sometimes referred to as a C-style for loop
34
34. Counter-Controlled For Loops
The syntax for counter-controlled for loops varies between languages, but is
generally quite similar in functionality
In Python, it looks like:
for <variable> in <sequence>:
<loop body>
The <loop body> will be executed once for each item in the <sequence>, storing the
current item in <variable> each time, so that you can use it in the <loop body>
<sequence> can be any iterable thing a list or tuple, a range of numbers, a string
(iterates character by character) Whatever you need to work through one item at a time!
<variable> simply specifies a variable name for the current item
You can refer to this variable inside the loop body
The name you give the variable should reflect a single item of the sequence
35
35. Counter-Controlled For Loops
item left in
sequence?
True
False
set variable
to next item
loop body
As you can see by the flowchart
If there is an item left in the sequence,
the variable is set to the next item
The loop body is then executed, typically
(but not always) making use of the variable
The sequence is then checked for another item
If there are no more items left in the sequence, the loop ends
The loop will work its way through the sequence,
item by item, from start to end
36
36. Python For Loop Examples
Python allows you to loop through any iterable thing, which includes lists,
tuples, strings and ranges (covered shortly):
37
names = ['Huey', 'Dewey', 'Louie']
# print each item in the list
for name in names:
print(name)
date = (2015, 12, 25)
# print each item in the tuple
for date_part in date:
print(date_part)
text = 'Hello!'
# print each character of the string
for character in text:
print(character)
Python
Huey
Dewey
Louie
2015
12
25
H
e
l
l
o
!
37. Python For Loops with Counters - Enumerate
Sometimes you will be interested in the index number of the current item,
as well as the value, when looping through a sequence
The previous examples only have a variable for the value
Using the enumerate() function, Pythons for loops allow you to specify
variable names for both the index number and the value of the current item
names = ['Huey', 'Dewey', 'Louie']
# print each item in the list
for name in names:
print(name)
Python
names = ['Huey', 'Dewey', 'Louie']
# print each item in the list, and its index in the list
for index, name in enumerate(names):
print('Item', index, 'is', name)
Python
Item 0 is Huey
Item 1 is Dewey
Item 2 is Louie
Huey
Dewey
Louie
38
38. Counter-Controlled For Loops
In some languages, a counter-controlled for loop is known as a for-each loop
These work very much like Pythons for loop (syntax varies)
39
// create an array of three names
$names = ['Huey', 'Dewey', 'Louie'];
// print out each item in the array
foreach($names as $name)
{
echo $name;
}
// print out each item in the array as well as its index number
foreach($names as $index => $name)
{
echo 'Item '.$index.' is '.$name;
}
PHP
39. Counter-Controlled For Loops
For loops are often used to loop through a range of numbers, going from a
starting number to an ending number, e.g.
This can be done in Python using the range() function:
Note: End number of range is not included. Add 1 as needed
40
for num in 0..5 # print the numbers 0 to 5
print num
end
Ruby
for num in range(6): # print the numbers 0 to 5
print(num)
for num in range(1, 11): # print the numbers 1 to 10
print(num)
for num in range(5, 51, 3): # print every 3rd number from 5 to 50
print(num)
for num in range(10, 0, -1): # print the numbers 10 to 1
print(num)
Python
This is also how you
repeat # times e.g.
for i in range(5):
print('La!')
will print La! 5 times.
40. C-Style For Loops
The C-style for loop is found in many languages
Actually a condition-controlled loop, but usually used in a counter-controlled way:
for (<initialisation>; <condition>; <increment>)
{
<loop body>
}
<initialisation> initialises a counter variable (happens once at the very start)
<condition> is checked before each iteration of the loop body
<increment> runs after each iteration of loop body, incrementing the counter
41
// print the numbers 1 to 10
for (int i = 1; i <= 10; i++)
{
printf("%i n", i);
}
C
See Reading 3.4 for details! condition
True
False
loop body
initialisation
increment
41. Conclusion
Data structures allows multiple pieces of data to be stored in some form of
organised structure
This allows you to manipulate data as a group Sorting, counting, searching,
determining min/max, iteration, etc.
Lists and tuples are two data structures Python provides which are similar to arrays,
a basic ordered collection of data
Iteration statements are control structures that allow you to repeatedly run a
block of code
Controlled either by a condition or counter
Python has a while loop and a counter-controlled for loop
Other loops include do-while, C-style for, and for-each loops
Break and continue can further control loop execution
42