{ "q01": { "type": "blank", "question": "\n
Ignoring the name of the script, print out the number of command-line\narguments passed to a Python script:
\n\n\nprint(____)\n\n" }, "q02": { "type": "blank", "question": "\n
Ignoring the name of the script, print out the command-line arguments\npassed to a Python script in a single string separated by commas:
\n\n\nprint(____)\n\n" }, "q03": { "type": "blank", "question": "\n
Print out the first 10 command-line argument passed to a Python\nscript:
\n\n\nprint(____)\n\n" }, "q04": { "type": "blank", "question": "\n
Print out the last command-line argument passed to a Python\nscript in all caps:
\n\n\nprint(____)\n\n" }, "q05": { "type": "blank", "question": "\n
Print out the largest (in terms of value) command-line argument passed\nto a Python script:
\n\n\nprint(____)\n\n" }, "q06": { "type": "blank", "question": "\n
Print the number of unique elements in the list data:
\n\n\nprint(____)\n\n" }, "q07": { "type": "blank", "question": "\n
Print the number of words in the string text:
\n\n\nprint(____)\n\n" }, "q08": { "type": "blank", "question": "\n
Print the first line of output from ps aux command.
\n\n\nprint(____)\n\n" }, "q09": { "type": "blank", "question": "\n
Download the resource referenced by an URL variable and parse\nthe text into a list of lines.
\n\n\ndata = ____\n\n" }, "q10": { "type": "blank", "question": "\n
Download the resource referenced by an URL variable and\nparse the JSON into a data variable:
\n\n\ndata = ____\n\n" } }