u4-script-functions Flashcards
What’s the difference between positional and keyword arguments in Python functions?
Positional arguments are passed by position, while keyword arguments are passed by name. Example:
def my_divide(numerator=1.0, divisor=1.0): return numerator / divisor my_divide(6, 2) # positional my_divide(numerator=6, divisor=2) # keyword
How do you set default values for function parameters?
Add an equals sign and default value in the function definition. Example:
def my_divide(numerator=1.0, divisor=1.0): return numerator / divisor my_divide() # uses defaults: 1.0/1.0
How can you modify a list in-place within a function?
Lists are mutable, so changes made to the list inside the function affect the original list. Example:
def append_sum(lst): lst.append(lst[-2] + lst[-1]) numbers = [1, 2, 3] append_sum(numbers) # numbers is modified
What’s the difference between returning a new list vs modifying in-place?
Returning a new list preserves the original, while in-place modification changes the original. Example:
def new_list(lst): return lst + [sum(lst)] # original unchanged def in_place(lst): lst.append(sum(lst)) # original modified```
How do you access the last elements of a list in Python?
Use negative indices: -1 for last element, -2 for second-to-last, etc. Example:
lst = [1, 2, 3, 4] last = lst[-1] # 4 second_last = lst[-2] # 3
What’s the purpose of None as a default parameter value?
None is commonly used to create mutable default values safely. Example:
def func(ignored_values=None): if ignored_values is None: ignored_values = {-1, -2, -3}
How do you combine elements from two lists into tuples?
You can iterate through both lists up to the length of the shorter list. Example:
def zip_lists(list1, list2): result = [] for i in range(min(len(list1), len(list2))): result.append((list1[i], list2[i])) return result
What’s the difference between pop() and remove() for lists?
pop() removes by index and returns the removed item, while remove() removes by value. Example:
lst = [1, 2, 3] lst.pop(0) # removes and returns first item lst.remove(2) # removes first occurrence of 2
How do you iterate through a sequence without using its values?
Use underscore () as a placeholder variable when you only need the count. Example:
def my_len(iterable): length = 0 for _ in iterable: # values not used length += 1 return length```
What is type hinting in Python functions?
Type hints suggest the expected types of parameters and return values. Example:
def filter_numbers(numbers: list, inplace: bool = False) -> list: # function body here```
How do you handle optional parameters with mutable default values?
Never use mutable objects as default values, instead use None and create the object inside the function. Example:
def func(ignored_values=None): # Good if ignored_values is None: ignored_values = {-1, -2, -3}
What’s the difference between list slicing and direct assignment?
List slicing [:] modifies the list in-place, while direct assignment creates a new reference. Example:
nums = [1, 2, 3] nums[:] = [4, 5, 6] # modifies original nums = [4, 5, 6] # creates new reference```
How do you iterate through a list while modifying it?
Use a while loop with an index counter when removing elements to avoid skipping items. Example:
i = 0 while i < len(numbers): if should_remove(numbers[i]): numbers.pop(i) else: i += 1```