Tagged Questions
-1
votes
1answer
57 views
Python - Releasing/replacing a string variable, how does it get handled? [closed]
Say i store a password in plain text in a variable called passWd as a string.
How does python release this variable once i discard of it (for instance, with del passWd or passWd= 'new random data')?
...
3
votes
2answers
98 views
About memory cache of Linux
I'm running a python script to do some statistics and the actually memory which used is low,about 10%.And no other process cost more memory.However,when i use free -m and it shows that almost 95% ...