Enhance your understanding of Python programming with these detailed ENGG1810 USYD course notes. This document is designed to support students in grasping the fundamentals of Python and advancing through more complex topics effectively. Ideal for students and professionals, these notes cover essent...
● Definition: Dictionaries store key-value pairs and are mutable and ordered (as of python
3.7).
● Examples:
○ Creating and accessing dictionaries:
computer = {'brand': 'Apple', 'model': 'iMac', 'year': 2007}
print(computer['model']) # Output: iMac
○ Modifying dictionaries:
computer['year'] = 2010 # Updates the year
computer['color'] = 'silver' # Adds a new key-value pair
Basics of Control Flow
● Control flow in programming refers to the direction in which the program executes. In
Python, this is primarily managed through conditional statements and loops. This lecture
focuses on conditional statements which allow the program to react differently depending
on the input or other data.
Conditional Statements
Conditional statements are the backbone of decision making in Python. They execute a certain
block of code based on a condition. The primary statements used are:
1. if Statement:
○ The if statement is used to test a condition and execute a block of code if the
condition is true.
○ Syntax:
if condition:
# execute this block
○ Example:
if weather == 'sunny':
print("Let's go outside!")
2. else Statement:
○ The else statement follows an if statement and is executed if the if statement’s
condition is false.
○ Syntax:
if condition:
# execute this block
else:
# execute this block
○ Example:
, if weather == 'sunny':
print("Let's go outside!")
else:
print("We might need an umbrella.")
3. elif (else if) Statement:
○ The elif statement is used to check multiple expressions for TRUE and execute a
block of code as soon as one of the conditions evaluates to TRUE.
○ Unlike else, there can be multiple elif blocks following an if.
○ Syntax:
if condition1:
# execute block 1
elif condition2:
# execute block 2
else:
# execute block 3
○ Example:
if weather == 'sunny':
print("Let's go outside!")
elif weather == 'rainy':
print("We need an umbrella.")
else:
print("It's a pleasant day.")
, Lecture 3
While Loops
● A while loop in Python repeatedly executes a target statement as long as a given
condition is true. Here’s how you structure a while loop:
○ while <condition>:
# Execute these actions
● Example: Counting Race Finishers Imagine a scenario where athletes are finishing a
race, and we want to print their finish positions as they cross the line:
○ person = 0
while person < 100:
person += 1
print(person)
● This code will print numbers 1 through 100, simulating athletes finishing from 1st to
100th place.
For Loops
● A for loop is used for iterating over a collection (like a list, tuple, set, or dictionary) or an
iterator. The basic syntax of a for loop is:
● for variable in collection:
# Execute actions
● Example: Iterating Over a List of Students
● students = ['Caren Han', 'Henry Weld', 'Annie Sun', 'Lilian Hunt']
for student in students:
print(student)
● This will print each student's name from the list.
Alle Vorteile der Zusammenfassungen von Stuvia auf einen Blick:
Garantiert gute Qualität durch Reviews
Stuvia Verkäufer haben mehr als 700.000 Zusammenfassungen beurteilt. Deshalb weißt du dass du das beste Dokument kaufst.
Schnell und einfach kaufen
Man bezahlt schnell und einfach mit iDeal, Kreditkarte oder Stuvia-Kredit für die Zusammenfassungen. Man braucht keine Mitgliedschaft.
Konzentration auf den Kern der Sache
Deine Mitstudenten schreiben die Zusammenfassungen. Deshalb enthalten die Zusammenfassungen immer aktuelle, zuverlässige und up-to-date Informationen. Damit kommst du schnell zum Kern der Sache.
Häufig gestellte Fragen
Was bekomme ich, wenn ich dieses Dokument kaufe?
Du erhältst eine PDF-Datei, die sofort nach dem Kauf verfügbar ist. Das gekaufte Dokument ist jederzeit, überall und unbegrenzt über dein Profil zugänglich.
Zufriedenheitsgarantie: Wie funktioniert das?
Unsere Zufriedenheitsgarantie sorgt dafür, dass du immer eine Lernunterlage findest, die zu dir passt. Du füllst ein Formular aus und unser Kundendienstteam kümmert sich um den Rest.
Wem kaufe ich diese Zusammenfassung ab?
Stuvia ist ein Marktplatz, du kaufst dieses Dokument also nicht von uns, sondern vom Verkäufer harryrickard. Stuvia erleichtert die Zahlung an den Verkäufer.
Werde ich an ein Abonnement gebunden sein?
Nein, du kaufst diese Zusammenfassung nur für 15,22 €. Du bist nach deinem Kauf an nichts gebunden.