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'
You are concerned about memory consumption and utilize multiple 3rd party libraries. How can you reduce your memory reso
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am