Where we need to use Python ? - Python
This is a discussion on Where we need to use Python ? - Python ; Hi
Iam new to Python
I know Perl, JScript,C,C++,Java
But i want to know where excatly this python come in to picture
And Is it a interpreted language or a programming language
It comes in which category
I very keen ...
-
Where we need to use Python ?
Hi
Iam new to Python
I know Perl, JScript,C,C++,Java
But i want to know where excatly this python come in to picture
And Is it a interpreted language or a programming language
It comes in which category
I very keen to know this please tell
Regards
Ganesh P
-
Re: Where we need to use Python ?
On Aug 20, 2007, at 1:02 AM, gperumal wrote:
> And Is it a interpreted language or a programming language
> It comes in which category
>
> I very keen to know this please tell
[ open on suburban kitchen, Wife and Husband arguing ]
Wife: New Shimmer is a floor wax!
Husband: No, new Shimmer is a dessert topping!
Wife: It's a floor wax!
Husband: It's a dessert topping!
Wife: It's a floor wax, I'm telling you!
Husband: It's a dessert topping, you cow!
Spokesman: [ enters quickly ] Hey, hey, hey, calm down, you two. New
Shimmer is both a floor wax and a dessert topping! Here, I'll spray
some on your mop.. [ sprays Shimmer onto mop ] ..and some on your
butterscotch pudding. [ sprays Shimmer onto pudding ]
[ Husband eats while Wife mops ]
Husband: Mmmmm, tastes terrific!
Wife: And just look at that shine! But will it last?
Spokesman: Hey, outlasts every other leading floor wax, 2 to 1. It's
durable, and it's scuff-resistant.
Husband: And it's delicious!
Spokesman: Sure is! Perks up anything from an ice cream sundae to a
pumpkin pie!
Wife: Made from an exclusive non-yellowing formula.
Husband: I haven't even touched my pudding and I'm ready for more!
Wife: But what about black heel marks?
Spokesman: Dirt, grime, even black heel marks, wipe clean with a damp
mop.
[ Husband accidentally sprays Shimmer onto the floor ]
Husband: Oh, sorry, honey, I'll clean that up!
Wife: Oh, no problem, sweetheart, not with new Shimmer!
[ Spokesman laughs continuously as he approaches the camera ]
Spokesman: New Shimmer, for the greatest shine you ever tasted!
Ducking,
Michael
---
"If we had asked people what they wanted they would have said 'a
faster horse'." --Henry Ford
-
Re: Where we need to use Python ?
On Aug 20, 3:02 am, gperu... wrote:
> Hi
>
> Iam new to Python
> I know Perl, JScript,C,C++,Java
> But i want to know where excatly this python come in to picture
>
> And Is it a interpreted language or a programming language
> It comes in which category
>
> I very keen to know this please tell
>
> Regards
> Ganesh P
http://www.python.org
-
Re: Where we need to use Python ?
<gperumal> wrote in message
news:1187596936.136499.200280@l22g2000prc.googlegroups.com...
| And Is it a interpreted language or a programming language
| It comes in which category
Python is an algorithm programming language.
The CPython implementation of the langauge compiles Python to proprietary
byte code and then interprets the byte code.
The Jython implementation compiles to javacode which is then handled
however by a Java runtime.
The IronPython implementation compiles to the .NET language handled by the
..NET runtime.
The PyPy implementation acts similarly to CPython, I believe, but can also
compile a subset of the language to C or other low level languages that can
be compiled to object code. There are other projects that compile subsets,
possible with additional instructions to the compiler.
Do visit www.python.org and take a look around. The documentation section
has a tutorial that will give an experienced programmer a good overview in
just a few hours.
tjr
-
Re: Where we need to use Python ?
Michael Bentley wrote:
> On Aug 20, 2007, at 1:02 AM, gperumal wrote:
>
>
>> And Is it a interpreted language or a programming language
>> It comes in which category
>>
>> I very keen to know this please tell
>>
>
> [ open on suburban kitchen, Wife and Husband arguing ]
>
> Wife: New Shimmer is a floor wax!
>
> Husband: No, new Shimmer is a dessert topping!
>
> [snip 50s-style add]
>
> Spokesman: New Shimmer, for the greatest shine you ever tasted!
>
Not the most to-the-point reply, but a very amusing one
.
/W
-
Re: Where we need to use Python ?
On Aug 20, 10:13 am, Wildemar Wildenburger <wilde...@freakmail.de>
wrote:
> Michael Bentley wrote:
> > On Aug 20, 2007, at 1:02 AM, gperu... wrote:
>
> >> And Is it a interpreted language or a programming language
> >> It comes in which category
>
> >> I very keen to know this please tell
>
> > [ open on suburban kitchen, Wife and Husband arguing ]
>
> > Wife: New Shimmer is a floor wax!
>
> > Husband: No, new Shimmer is a dessert topping!
>
> > [snip 50s-style add]
>
> > Spokesman: New Shimmer, for the greatest shine you ever tasted!
>
> Not the most to-the-point reply, but a very amusing one
.
Ack! Worst ****ogy ever!
But yes, amusing nonetheless.
-
Re: Where we need to use Python ?
Terry Reedy a écrit :
> <gperumal> wrote in message
> news:1187596936.136499.200280@l22g2000prc.googlegroups.com...
> | And Is it a interpreted language or a programming language
> | It comes in which category
>
> Python is an algorithm programming language.
>
> The CPython implementation of the langauge compiles Python to proprietary
> byte code
Hahem... "proprietary" is certainly not the right term here.
> and then interprets the byte code.
(snip the rest)
-
Re: Where we need to use Python ?
gperumal a écrit :
> Hi
>
> Iam new to Python
> I know Perl, JScript,C,C++,Java
> But i want to know where excatly this python come in to picture
Somewhere between Perl and Java.
> And Is it a interpreted language or a programming language
??? It's obviously a programming language, but this has nothing to do
with interpreted vs compiled - which FWIW is a property of an
implementation, not of a language.
Actually, most Python implementations are compiled to byte-code
(specific one for CPython, JVM byte-code for Jython, CLR byte-code for
Iron-Python).
-
Re: Where we need to use Python ?
|"Bruno Desthuilliers" Terry Reedy a écrit :
|
|> The CPython implementation of the langauge compiles Python to
proprietary
|> byte code
|Hahem... "proprietary" is certainly not the right term here.
a. you are being nitpicky, overly in my opinion
b. you failed to suggest a better term, hence cannot expect the same of me
In any case, CPython is owned by PSF (which gives it away). Its bytecode
is an private implementation detail subject to change in any .x version as
the developers see fit.
-
Re: Where we need to use Python ?
On 22 Aug, 16:36, "Terry Reedy" <tjre...@udel.edu> wrote:
> |"Bruno Desthuilliers" Terry Reedy a écrit :
> |Hahem... "proprietary" is certainly not the right term here.
[...]
> In any case, CPython is owned by PSF (which gives it away). Its bytecode
> is an private implementation detail subject to change in any .x version as
> the developers see fit.
Yes, but it's not like the PSF are going to initiate legal action
against anyone who implements an interpreter for similar bytecode,
which is what has happened for things like CPU instruction sets in the
past. CPython bytecode is best described as "implementation-specific",
thus avoiding any words with exclusive ownership connotations.
Paul
Similar Threads
-
By Application Development in forum Python
Replies: 1
Last Post: 10-16-2007, 06:39 PM
-
By Application Development in forum Python
Replies: 2
Last Post: 09-20-2007, 04:10 AM
-
By Application Development in forum Python
Replies: 2
Last Post: 09-10-2007, 03:12 PM
-
By Application Development in forum Python
Replies: 0
Last Post: 07-18-2005, 01:03 AM
-
By Application Development in forum Python
Replies: 0
Last Post: 01-31-2005, 09:27 PM