186k views
11 votes
Fill in the blank to complete the sentence.

If you only want to use the localtime function, you can load just that one function into active memory using the following line of code.

from _______ import localtime()

(Sorry for bad picture) ​

Fill in the blank to complete the sentence. If you only want to use the localtime-example-1

1 Answer

8 votes

Answer:

The correct answer is time

Step-by-step explanation:

from time import localtime()

Fill in the blank to complete the sentence. If you only want to use the localtime-example-1
User Darda
by
4.4k points