Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
Python
no pass-values calling?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Dennis Lee Bieber, post: 3405936"] At least give me credit for putting "variable" in quotes -- to imply that it isn't the classical "mailbox" variable (fixed address containing some data) As far as I'm concerned, there is a pool of objects, and a pool of names with strings of twine [vs characters <G>] (the references) to objects. For names, there are, in my mind, unqualified names, and qualified names. A qualified name is one that "goes inside" an object and allows changing the inside when it appears on the left of an = (or in absence of an =); unqualified names on the left of an = move the name/twine from whatever object to which it had been connected over to some other object. a = b #unqualified, "a" is disconnected from whatever, and #connects it to "b" a[1] = b #qualified, goes inside "a" to move the connection #the second element from whatever to "b" a.it = b #qualified, goes inside of "a" to move the connection #of the "it" component from whatever to "b" a.that(b) #goes inside of "a" using some method which might #connect something to "b" -- Wulfraed Dennis Lee Bieber KD6MOG [email]wlfraed@ix.netcom.com[/email] [email]wulfraed@bestiaria.com[/email] [URL]HTTP://wlfraed.home.netcom.com/[/URL] (Bestiaria Support Staff: [email]web-asst@bestiaria.com[/email]) [URL]HTTP://www.bestiaria.com/[/URL] [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
Python
no pass-values calling?
Top