You are concerned about memory consumption and utilize multiple 3rd party libraries. How can you reduce your memory reso
Posted: Fri Jul 01, 2022 5:42 am
You are concerned about memory consumption and utilize multiple3rd party libraries. How can you reduce your memory resourcefootprint during runtime for Python 3.x but still utilize the sameexternal libraries?
a)
Utilize 'from module import function' for only the functionsneeded
b)
Utilize more efficient libraries
c)
Utilize 'from module import function' for only the classesneeded
d)
Directly specify only functions using 'importmodule.functionName'
a)
Utilize 'from module import function' for only the functionsneeded
b)
Utilize more efficient libraries
c)
Utilize 'from module import function' for only the classesneeded
d)
Directly specify only functions using 'importmodule.functionName'