Your question is Coding: Python String and Lists. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Sony BRAVIA test tooling receives a label string and a sequence of integer measurements. Implement a function that performs four deterministic transformations without changing the original list.
" ", in the original string. Do not count tabs or newlines.Return a dictionary with exactly these keys: reversed, space_count, normalized, even_positions, and odd_positions.
Input is text: str and values: list[int]. Return dict containing a string, an integer, a string, and two integer lists. The input list must not be mutated.
def process_bravia_data(text, values):