I saw the code from Youtube and have a question.
The code below imports time
twice.
- import time
- from time import mktime
import pandas as pd
import os
import time
from datetime import datetime
from time import mktime
By importing time on third line, I think 5th line is useless.
Why does he import time twice?