100%
What command can be used to install most packages from the Python Package Index (PyPI)? - Answers
pip
Python 3 is already installed on which operating system? - Answers Ubuntu 16.04
Which of these are valid commands that you can use with pip? - Answers install
list
freeze
uninstall
Which of these are comparison operators? - Answers !=
==
Complete the code to calculate a number's exponent value.
Code Editor: def exp(x,y): val = 1 for i in range(y): val <missing code> return val - Answers *= x
Which of these statements defines a tuple named 't'? - Answers t = (1, 2, 3)
Which of these is a valid hash bang that will help the program loader determine which interpreter to
use? - Answers #!/usr/bin/env python3
Which statement will open a file so that you can write to it without overwriting the file entirely? -
Answers message_file = open(my_file, 'a')
You've imported the csv module into your Python script. Which statement will create a reader object for
a csv file? - Answers cust_reader = csv.reader(cust_file)
Complete the code to successfully load a json structured data file for processing using the json module
in Python.
Code Editor:
customer_open = open(my_file)
customer_data = <missing code>
print(customer_data)
input("\npress Enter to continue...\n") - Answers json.load(customer_open)