Which is right?

Report a typo

Which statements about the following code are true?

def process_numbers(numbers: List[int]) -> List[int]:
    squared_numbers = [num ** 2 for num in numbers]
    return squared_numbers

print(process_numbers(['1', '2', '3', '4']))
Select one option from the list
___

Create a free account to access the full topic