Loops, Operators & Strings Flashcards

1
Q

What is a “while loop”?

Give an example

A

Used to repeat a block of code as long as a certain condition is true

while condition:
# code to be executed while the condition is true

This loop will continue as long as the “condition” is TRUE

Ex.
num = 1
while num <= 20:
print(num)
num += 1 (used to increment by 1 in each iteration of the loop)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a “for loop”?

Give an example

A

Used to iterate over a collection of items (e.g. a list, tuple, or string) or other iterable object

To go over the collection, the for loop can be used in conjunction with the “in” operator

for item in collection :
# code to be executed for each item in the collection

In each iteration of the loop, the “item” variable is assigned the next value

Ex.
numbers = [1, 2, 3, 4, 5]
for num in numbers:
print(num)

Ex.
animals = [‘dog’, ‘cat’, ‘horse’, ‘hamster’, ‘bat’]
for x in animals:
print(x)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How does the “range()” function in the “for” loops?

A

Used to generate a sequence of numbers that can be used in a for loop

Can be used to generate a sequence of numbers based on a starting point, ending point, and step size

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

For the “range()” function..

If we don’t use the start parameter, the default start will be “__”

If we don’t use the step parameter, the default step will be “__”

A

Default start: 0

Default step: 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

For the “range()” function…

The starting point of the sequence is always “_________”

The ending point of the sequence is always “_________”

Give an example to show this

A

Starting point = inclusive

Ending point = exclusive

Ex.
for x in range(5):
print(x)

The above code will print:
0 (inclusive)
1
2
3
4 (exclusive)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Print the numbers 1 through 5

Given this example

for num in range (,)
print(num)

What would be the range of numbers?

A

(1,6)

Have to put 6 because the end is exclusive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Print the odd numbers from 1 to 9

Given this example

for num in range (,,_):
print(num)

What would be the range of numbers?

A

(1,10,2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Print the numbers 5 through 1 in reverse order

Given this example

for num in range (,,_):
print(num)

What would be the range of numbers?

A

(5,0,-1)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Here is a slightly more complex example:

sum = 0
for n in range(1,6):
print(n)
sum = sum + n
print(“The sum = “, sum)

What is the result of this code?

A

Make a chart…

n. sum.

  1. 0 + 1 =1
  2. 1 + 2 =3
  3. 3 + 3 =6
  4. 6 + 4 =10
  5. 10 + 5 =15

1
2
3
4
5
The sum = 15

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A “for” loop is used for what?

A

Used to iterate over a sequence of values
(ex. a list, tuple, or range)

Executes a set number of times based on the length of the sequence

Syntax: for item in sequence

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

A “while” loops is used for what?

A

Used to execute a set of statements repeatedly while a condition is true

Executes an unknown number of times based on the condition

Syntax: while condition:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

In general, “for” loops are typically used when you “_____” the number of times you need to iterate

In general, “while” loops are used when you “_____ _____” the exact number of times you need to iterate & need to “_______” iterating until a certain condition is met

A

Know

Don’t know; continue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What are nested control structures?

A

This allows you to perform more complex tasks & solve more complicated problems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Why is indentation in python so important?

A

Changing indentation = can change program output

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Give an example of a nested “for” loop

A

for i in range(3):
for j in range(3):
print(i, j)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What would print in this example?

x= 10
y = 5

If x > y:
If x > 15:
print(“x>y and greater than 15”)
else:
print(“x>y but less than or equal to 15”)

A

This will print whichever condition is true

Because the indentation is correct

17
Q

What would print in this example?

x= 10
y = 5

If x > y:
If x > 15:
print(“x>y and greater than 15”)
else:
print(“x>y but less than or equal to 15”)

A

This will not print anything because the else is not properly indented

18
Q

What will be printed?
(Go through each part)

sum = 0

for i in range(3):
for j in range (9,1,-3)
sum += j
print(“sum =“, sum)

A

for i in range(3) —> [0,1,2]

for j in range(9,1,-3) —> [9,6,3…]

sum += j —> [9+6+3 = 18]

print(“sum =“, sum) —> [18x3 = 54]

***multiply by 3 at the end because the range is = 3

19
Q

In the example…

range(9, 1, -3)

What values would this include?

A

It creates a sequence STARTING at 9

Ending JUST BEFORE 1 (does not include 1)

And MOVING BY -3 in each step

Values for j would be [9, 6, 3]

20
Q

Give an example of a “while” and a “for” loop that are identical

A

Example using a for loop

21
Q

In a “for” loop:

for i in range(5):
print(“iteration”, i)

What would give an equivalent output, but as a “while” loop?

A

i = 0
while i < 5:
print(“iteration”, i)
i += 1

BOTH give the same output which is [0,1,2,3,4]

22
Q

PEDMAS rule applies in python

What is this?

A

P: parentheses ex. (2 + 3) + 4 =20

E: exponents ex. raising to a power (**)
- evaluates from RIGHT —> LEFT

MD: multiplication & division (from left to right)
- (*), (/), and modulus (%) operators

AS: addition & subtraction (from left to right)

23
Q

Strings are immutable, what does this mean?

A

They cannot be modified once created

Msg[0] = “h”

24
Q

How do you break out of an “infinite” loop?

A

Forgetting to update the loop index is a common error

Need to “interrupt execution” to break out of the loop

Do this by Ctrl+C

25
Q

Each character in the string occupies one byte in memory and has an index…

Strings start at index “__”

The last index is the length of the string “__’
So what is the last index in a string of 12?

A

0

-1

The last index is 11 in a string of size 12

26
Q

The + operator is used to “_________” strings

The repetition operator is * and is used to “______/________” strings

Give an example for each

A

Concatenate
Ex. Hello, “ + “World!” results in the string “Hello, World!”

Repeat/multiply
Ex. “hi” * 5 results in “hihihihihi”

27
Q

Repetition does “____” add a white space in the “_______” string

How do we add spaces in the output string?

A

Not; output

To add white spaces in the output string, white space can be added in the original string

Ex. “hi “ * 5 results in “hi hi hi hi hi “

(There is a space after hi)

28
Q

What does the len() function do for a string?

Give an example

A

It returns the length (number of characters) of a string

Ex. length = len(“Hello”) assigns the value of 5 to the variable length

29
Q

What are two what we can retrieve the last character of a string?

A
  1. Using the [] operator:
    msg = “Hello World!”
    length = len(msg)
    lastChar = msg[length - 1]
  2. Using a negative index:
    lastChar = msg[-1]
30
Q

What is string slicing used for?

Give an example

A

It is used to extract a portion of a string

Can be done using the square brackets [] and specifying the start and end indices

Ex.
s = “Hello World!”
s[0:5] → returns “Hello”
s[:5] → returns “Hello” (means from start of string)
s[0:9] → returns “Hello Wor”
s[6:10] → returns “Worl”
s[6:] → returns “World!”

31
Q

In python you can also compare strings using various comparison operators like what?

A

Boolean values

== equality

!= inequality

32
Q

String comparisons are case-sensitive, what does this mean?

Uppercase letters are considered “_____” than lowercase letters

33
Q

What are the 3 different ways to traverse the string “Hello world”

A
  1. With for loop iterating over characters
    Ex.
    for char in s:
    print(char)
  2. With for loop using range and indexing
    for i in range(len(s)):
    print(s[i])
  3. With while loop using indexing
    length = len(s)
    i = 0
    while i < length:
    print(s[i])
    i += 1
34
Q

You can also check for the presence of substrings within a string using the membership operator “___”

What answer does this return?

A

In

The in operator returns a Boolean value (True or False) based on the presence or absence of the substring in the string