jaxim
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2018
09:00 AM
Delete a variable?
How do I delete a variable after I am done using it?
I've created a variable in one function:
m.foo = "bar"
Then in a different function, I'd like to delete it since I no longer need it and wish for the variable to no longer take up any more memory space. How can I do this?
I've created a variable in one function:
m.foo = "bar"
Then in a different function, I'd like to delete it since I no longer need it and wish for the variable to no longer take up any more memory space. How can I do this?
1 REPLY 1
NB_
Roku Guru
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2018
09:17 AM
Re: Delete a variable?
assigning `invalid` to it will do (think NULL, nil, None)
and so will explicitly removing it from the dictionary
m.foo = invalid
and so will explicitly removing it from the dictionary
m.foo.delete("foo")