Ask your own question, for FREE!
Computer Science 8 Online
OpenStudy (anonymous):

why is it that I can't put "from string import *" (without quotations) inside my function?

OpenStudy (anonymous):

Importing a library inside of a function would lead to the library being deallocated from memory as soon as the function is over (in that it would only exist in the function's namespace, once that namespace is removed, so would the imported function). So if you were going to try to reference the function is a latter function, it would not exist anymore. To stop this from being a problem python only allows you to import functions at a world level, so that they are applicable at all levels of your program.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!