Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #45153 > unrolled thread
| Started by | Citizen Kant <citizenkant@gmail.com> |
|---|---|
| First post | 2013-05-11 22:03 +0200 |
| Last post | 2013-05-14 20:51 -0700 |
| Articles | 4 — 4 participants |
Back to article view | Back to comp.lang.python
Python for philosophers Citizen Kant <citizenkant@gmail.com> - 2013-05-11 22:03 +0200
Re: Python for philosophers Gregory Ewing <greg.ewing@canterbury.ac.nz> - 2013-05-12 13:26 +1200
Re: Python for philosophers Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2013-05-13 02:46 +0000
Re: Python for philosophers Ramchandra Apte <maniandram01@gmail.com> - 2013-05-14 20:51 -0700
| From | Citizen Kant <citizenkant@gmail.com> |
|---|---|
| Date | 2013-05-11 22:03 +0200 |
| Subject | Python for philosophers |
| Message-ID | <mailman.1566.1368302603.3114.python-list@python.org> |
[Multipart message — attachments visible in raw view] — view raw
Hi, this could be seen as an extravagant subject but that is not my original purpose. I still don't know if I want to become a programmer or not. At this moment I'm just inspecting the environment. I'm making my way to Python (and OOP in general) from a philosophical perspective or point of view and try to set the more global definition of Python's core as an "entity". In order to do that, and following Wittgenstein's indication about that the true meaning of words doesn't reside on dictionaries but in the use that we make of them, the starting question I make to myself about Python is: which is the single and most basic use of Python as the entity it is? I mean, beside programming, what's the single and most basic result one can expect from "interacting" with it directly (interactive mode)? I roughly came to the idea that Python could be considered as an *economic mirror for data*, one that mainly *mirrors* the data the programmer types on its black surface, not exactly as the programmer originally typed it, but expressed in the most economic way possible. That's to say, for example, if one types >>>1+1 Python reflects >>>2. When data appears between apostrophes, then the mirror reflects, again, the same but expressed in the most economic way possible (that's to say without the apostrophes). So, would it be legal (true) to define Python's core as an entity that mirrors whatever data one presents to it (or feed it with) showing back the most shortened expression of that data? Don't get me wrong. I can see the big picture and the amazing things that programmers write on Python, it's just that my question points to the lowest level of it's existence. Thanks a lot for your time.
[toc] | [next] | [standalone]
| From | Gregory Ewing <greg.ewing@canterbury.ac.nz> |
|---|---|
| Date | 2013-05-12 13:26 +1200 |
| Message-ID | <av89dcFbgncU1@mid.individual.net> |
| In reply to | #45153 |
Citizen Kant wrote: > I roughly came to the idea that Python could be > considered as an *economic mirror for data*, one that mainly *mirrors* > the data the programmer types on its black surface, not exactly as the > programmer originally typed it, but expressed in the most economic way > possible. At best, this would be true only for a very small subset of things that you can enter into the interactive interpreter. Even confining yourself to arithmetic expressions, there are problems. Consider: >>> 12**34 4922235242952026704037113243122008064L The input is 6 characters long, and the output is 37 characters long. Is that more "economical"? -- Greg
[toc] | [prev] | [next] | [standalone]
| From | Steven D'Aprano <steve+comp.lang.python@pearwood.info> |
|---|---|
| Date | 2013-05-13 02:46 +0000 |
| Message-ID | <51905423$0$29997$c3e8da3$5496439d@news.astraweb.com> |
| In reply to | #45153 |
On Sat, 11 May 2013 22:03:15 +0200, Citizen Kant wrote: > Hi, > this could be seen as an extravagant subject but that is not my original > purpose. I still don't know if I want to become a programmer or not. At > this moment I'm just inspecting the environment. Towards what purpose? Do you want to learn to program? If not, then why do you care about Python programming? What do you aim to get out of this exercise? > I'm making my way to > Python (and OOP in general) from a philosophical perspective or point of > view and try to set the more global definition of Python's core as an > "entity". What do you think "Python's core" means? What do you mean by "global definition"? What is an "entity"? > In order to do that, and following Wittgenstein's indication > about that the true meaning of words doesn't reside on dictionaries but > in the use that we make of them, the starting question I make to myself > about Python is: which is the single and most basic use of Python as the > entity it is? Programming. A programming language is an abstract system for performing computations. Or, if you prefer simple English, programming. Programming is what programming languages are for. That is *all* they are for. > I mean, beside programming, Your question pre-supposes a counter-factual. Namely that there exists something *more fundamental* to programming that Python is for. One might as well ask: "Aside from driving screws, what is the single and most basic use of a screwdriver?" Just because you can pound a small nail into soft wood using the handle of a screwdriver, does not mean that pounding nails is more fundamental to the screwdriver than driving screws. > what's the single and most > basic result one can expect from "interacting" with it directly > (interactive mode)? For your purposes, what is so special about interactive mode that you single it out in this way? Interactive mode is just like non-interactive mode, only the user interacts directly with the compiler, instead of indirectly. -- Steven
[toc] | [prev] | [next] | [standalone]
| From | Ramchandra Apte <maniandram01@gmail.com> |
|---|---|
| Date | 2013-05-14 20:51 -0700 |
| Message-ID | <5f0543e3-7e26-42fa-a5dc-f4319d23da4e@googlegroups.com> |
| In reply to | #45153 |
On Sunday, 12 May 2013 01:33:15 UTC+5:30, Citizen Kant wrote: > Hi, > this could be seen as an extravagant subject but that is not my original purpose. I still don't know if I want to become a programmer or not. At this moment I'm just inspecting the environment. I'm making my way to Python (and OOP in general) from a philosophical perspective or point of view and try to set the more global definition of Python's core as an "entity". In order to do that, and following Wittgenstein's indication about that the true meaning of words doesn't reside on dictionaries but in the use that we make of them, the starting question I make to myself about Python is: which is the single and most basic use of Python as the entity it is? I mean, beside programming, what's the single and most basic result one can expect from "interacting" with it directly (interactive mode)? I roughly came to the idea that Python could be considered as an economic mirror for data, one that mainly mirrors the data the programmer types on its black surface, not exactly as the programmer originally typed it, but expressed in the most economic way possible. That's to say, for example, if one types >>>1+1 Python reflects >>>2. When data appears between apostrophes, then the mirror reflects, again, the same but expressed in the most economic way possible (that's to say without the apostrophes). > So, would it be legal (true) to define Python's core as an entity that mirrors whatever data one presents to it (or feed it with) showing back the most shortened expression of that data? > Don't get me wrong. I can see the big picture and the amazing things that programmers write on Python, it's just that my question points to the lowest level of it's existence. > Thanks a lot for your time. I expected some spam but this actually makes some sense.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web