Valerie Meunier

Valerie Meunier

  • 958
  • 693
  • 72.1k

difference between import modules

Mar 27 2023 3:54 PM

Hi

look at this two lines:

from datetime import timedelta #  = import class timedelta from module datetime => ok
from datetime.timedelta import * # = import eveything from class timedelta from module datetime =>error

Where Is the difference between both lines? I get the error import datetime.timedelta not resolved at the second line.

Thanks

V.


Answers (5)