What function from the 're' module would you use to check if a string starts with 'Hello'?
Which function from the 'datetime' module returns the current local date and time as a datetime object?
Which function from the 'os' module can be used to list all files and folders in a directory?
If you want to count the number of occurrences of each element in a list, which class from 'collections' would you use?
Which function from the 'itertools' module would you use to endlessly repeat the element 10?
How do you immediately exit a Python program using the 'sys' module?
Which method would you use to extract all matching groups from a string using a compiled regex pattern?
What method would you use to format a datetime object as a custom string (e.g., '2024-06-10')?
Which function sets the current working directory to a new path in the 'os' module?
Which collections class allows you to create immutable record-like objects with named fields?
Which itertools function generates the cartesian product between two lists?
Which attribute of the 'sys' module contains the list of command-line arguments passed to a script?
Which 're' module function replaces all occurrences of a pattern in a string with a replacement string?
Which 'collections' class creates a dictionary that provides a default value for missing keys?
Which itertools function produces infinite numbers starting from a specific value, such as 5, 6, 7, ...?