Multiple choice What correctly imports the datetime library? import datetime from datetime import from datetime from datetime import datetime import datetime Reveal answer Fill a bubble to check yourself C Correct answer Explanation The syntax 'from module import object' is the standard way to import a specific class or function from a library. Option D is also a valid way to import the whole module, but C is the most specific way to import the datetime class.