u2-script-loops-conditions Flashcards

1
Q

What’s the difference between range(3, 20) and range(3, 20, 3)?

A

range(3, 20) generates numbers 3 through 19 incrementing by 1, while range(3, 20, 3) generates only numbers divisible by 3: 3, 6, 9, 12, 15, 18

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

How can you check if a number is divisible by 3 in Python?

A

Use the modulo operator: if number % 3 == 0. If the remainder is 0, the number is divisible by 3.

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

What are two ways to exit a while loop in Python?

A

1) Using a break statement to exit immediately, or
2) Using a condition in the while statement that becomes False when you want to exit

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

What’s the difference between these two loops: ‘while True:’ and ‘while condition:’?

A

‘while True:’ creates an infinite loop that must be exited with ‘break’, while ‘while condition:’ automatically exits when the condition becomes False

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

How do you check if a character is a digit in Python?

A

Use the string method isdigit(). Example: char.isdigit() returns True if char is a digit (0-9)

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

How do you check if a character is lowercase in Python?

A

Use the string method islower(). Example: char.islower() returns True if char is a lowercase letter

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

What does enumerate() do in a for loop?

A

enumerate() provides both the index and value in each iteration. Example:

for i, char in enumerate("hello")

gives (0, ‘h’), (1, ‘e’), etc.

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

What is the ‘else’ clause in a while loop used for?

A

The else clause in a while loop executes when the loop completes normally (not through a break statement). Example from password checker:

while try_count < try_limit:
    if password == secret_pwd:
        break
    else:
        print("Contact administrator")
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How can you create a counter-controlled loop in Python?

A

Two ways:
1) Using a for loop with range:

for i in range(limit)

or

2) Using a while loop with a counter:

count = 0
while count < limit:
    count += 1```
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What’s the difference between += and = when working with strings?

A

’+=’ appends to the existing string, while ‘=’ creates a new string assignment. Example:

s += "new"  # Appends "new" to existing string
s = "new"   # Replaces entire string with "new"```
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How can you nest loops to compare characters between two strings?

A

Use a nested for loop structure:

for i, char1 in enumerate(string1):
    for char2 in string2:
        if char1 == char2:
            # do something```
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What’s the purpose of assert statements in Python code?

A

assert statements help verify that conditions are met and catch logical errors. Example:

assert len(s) == n_digits + n_lowercase + n_other

verifies that all characters were counted correctly

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

How can you accumulate values in a loop?

A

Use a variable initialized before the loop and update it inside the loop:

result = 0
for value in range(3, 20):
    result += value ** 2```
How well did you know this?
1
Not at all
2
3
4
5
Perfectly