473,406 Members | 2,847 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,406 software developers and data experts.

Why I love Python (warning: rambling)

I've been following the group a bit (somewhat loosely; discussions involving
other languages or advanced concepts kind of lose me), and I see all this
negativity (OMG Python's lambda is borken roflol, use teh othar langauge). I as
a relative newcomer to Python pay little heed to the criticism, though. A few
things in Python are counterintuitive, yes, but what language doesn't have such
things? And I feel that one can master the syntax of Python in far less time
than one can for many other language (at least this was true for me). For
little reason other than to take a break from all the trolls, I've decided I'd
write why I love Python. Most of you will already know these things, but for
the other newbies and the outsiders who need to be convinced...;)

I come from mostly a C background. Now, let's get something straight here: I
never had a real job programming, nor have I ever completed any large programs
(however many times I have made large portions of programs). But I've still
written a substantial amount of code in some languages, including testing and
such, and I also have many books. ;) So I still know what I like in a language.

Here are the languages I've learned: BASIC (several variants, including
QBasic), Visual Basic, C, C++, D, Small, Java, Python, Turbo Pascal, Perl,
Assembly (x86, Z80, 6502), and there's always one or three that I forget. I was
tempted to add Delphi, but I didn't really learn much of it that Turbo Pascal
didn't have. I probably will learn LISP or Ruby next. Of course, I know some of
these better than others...I've forgotten much of Perl and Pascal (however some
documentation is probably all I'd need to get up to speed).

I actually learned C as a stepping stone to C++, sort of...eventually I grasped
the OOP concepts and had been writing full-fledged C++ for some years before I
realized that I hate C++. That language is a monster. It looks easier to
understand than it is. Some of the things in my advanced C++ texts give me
nightmares. I'm not saying C++ users are stupid for using C++ or anything like
that -- it's just not for me. I was in AP Computer Science for three years in
high school (because it was so easy, and gave me time at school to code REAL
stuff)...some of the things that they don't teach in the book kind of freak me
out (their teaching of exception-handling was atrocious, for instance). I still
use C++, in fact one of my current projects embeds Python into it, but I don't
have to like it. :) C++ may well be the right language for certain jobs...I try
to stay away from those jobs. ;)

But I grew dissatisfied with C, too, as a general-purpose language because it's
more on the opposite end of the scale. You have to type so much just to do
something simple sometimes. And doing OOP code in C is a hassle. Not doing OOP
code in C sometimes leads to inflexibility...meaning C's not the tool for that
job, unless you have to have it hyper-omega-ultra-fast while still
portable...I'm more of a designer than a programmer. I like being able to think
something and just typing it out. I don't want to do pointer arithmetic, I want
to just implement my ideas.

So I became a Java nut for some time. Java, when it comes down to it, its
taking both C and C++ and fixing anything that is too complex or too low-level
(and then trying to make it portable). But it has some oddities...it wants to
be type-strict, but if you want an abstract container, you have to cast to
object. Huh? It looks to me like in Java, you're doing high-level things using
low-level thinking. Sometimes it's too easy to do what you want...other times
it's near impossible. Again, I'm not bashing any of these languages, I just
don't like them as general-purpose tools.

I was led to try D sometime (http://www.digitalmars.com/d/). I'd always been
interested in it and tried a recent version of the language and compiler. Nope.
Doesn't click for me...it seems as schizophrenic as C++, both in its goals and
in its implementation. I liked it at first, but...nah.

You'll notice that these languages all share a common style of syntax and
semantics. C++ is based on C, and Java is indirectly based on C++, and D is
based on all of the above. I decided I just didn't like the syntax and
semantics, and one day when I needed to write a script to process a text file
and spit out the result in another file, I knew I didn't want to use one of
these languages. I decided to try Python.

I'd already tried to learn Perl by this point. I sort of succeeded. But Perl's
so hairy that if you put it in the forest, people will have their definitive
proof of the existence of the sasquatch. I can't read Perl code even if I wrote
it. So while I respect it, as I respect most languages, as a specific-purpose
language, I didn't really want to bother with it for this task, as I wanted to
try a general-purpose language, other than the "general-purpose" languages I
already knew. So Python it is.

Wow.

This is the language I've always wanted to see. Bad indentation is nearly
non-existent (if you've seen an AP Computer Science classroom and took a look
at the C++/Java code on the students' monitors, you WILL shriek with horror at
half of it). The language and the library complement each other well, and if
you can't do it simply with the language, you probably can with the (massive)
library. Types are rendered almost unimportant. Python, to put it simply, asks
the programmer that crucial question: "What is the ESSENCE of the problem?"
Rarely do I find myself wrestling with the language's syntax. I feel I've
mostly mastered the syntax and semantics and I needed little more than the
Reference Manual and the Python Tutorial!

I personally feel that the performance worries that put C and C++ as the
industry standard (with Java not far behind because "it looks like C++ and it's
not THAT slow") are becoming increasingly unwarranted. It's kind of ironic for
me to say this as I have a current program I'm working on where Python is
certainly running too slow for me (though I'm working on that). But that's a
special case, in this case, digital signal processing.

Of course, I still have my own (minor) issues with Python. The way name binding
works is kind of odd to me, but it does make sense to me more often than not,
and I'm getting used to it quickly, unlike some trolls^H^H^H^H^H^Hpeople I
know. The immutability of strings is also kind of strange, but I understand why
it's done...namely so people don't accidentally do this:

foo = 'this is a string'
bar = foo
foo[:4] = 'that'
print bar # Prints 'that is a string'!

And instead the interpreter provides a helpful traceback on line 3 saying in
essence 'You can't do that'. (Then people who don't understand why will then
rail about it on the newsgroup instead of discovering that foo = 'that' +
foo[4:] produces the intended result...) I don't think there's anything
preventing anybody from making a 'mutable string' class, though, especially
with how we can inherit from basic types, though I wouldn't be sure of the
wiseness of doing that. Wait. Hold on a minute.

[checks to make sure standard library has no mutable string class...crap! There
is: UserString.MutableString, though it's semi-deprecated. :)]

Yup. That library does have everything. ;) Anyway, to get back to what I was
saying, Python has some oddities...but hey, what language doesn't?...and these
oddities are a lot easier for me to put up with than the ones I've found in
other languages.

I was going to say more, but I've rambled enough for one night/morning/whatever
it is now...time to get back to actually coding, and then sleeping. :) I hope I
didn't make myself, or anybody else, look too foolish.

- Kef

Jul 18 '05 #1
19 4093
On Tue, Oct 28, 2003 at 11:12:45AM +0000, KefX wrote:
....
I probably will learn LISP or Ruby next.


Ruby is a great language but it will not change anything in the way you
think about programming when you already know Python; LISP will.

If you already knew Ruby I could probably say that learning Python will
not change anything in the way you think about programming. Hanging out
on python-list will change the way you think about programmers, though.

Oren
Jul 18 '05 #2
>Hanging out on python-list will change the way you think about programmers,
though.

In a good or a bad way? ;)

- Kef

Jul 18 '05 #3
Kef,

Funny, a lot of people make testemonials about Python, just like you have...

(I'm sure people also make testimonials about any given language, too).

I think the difference is the way people tend to come to Python: search the
archives and you'll see hundreds of instances of 'seekers' having 'come
home'.

Python seems to engender an almost 'born again programmer' style responsefrom
most who bother to try to master it. Most say that when they eventually /do/
take the step, the transition is surprisingly easy - Guido's claim in the
tutorial that you can learn most of what you need to know to become
productive in an afternoon is not too far from the truth.

When it comes to the finer, weirder, and (dare I say) darker secrets of
Python, c.l.py is the place to learn about them. You can learn everything
from 'just for fun' tricks that you'd never dream of incorporating into a
real program to powerful magic that makes your program run n-times faster,
without losing readability.

Still, the guys here are generally quite firmly grounded on reality; there are
certain scenarios where you just *wouldn't* employ Python, and the peeps here
in c.l.py will freely admit that. For some, the obvious answer is to write
the appropriate parts in, say, C and use Python as a 'wrapper' around that,
saving the bits that Python is good at for Python and the bits that C is good
at for C. Others would advocate simply using the *right* language in the
first place. I think a realistic motto would be "one size *does not* fit
all".

Still, given the 'performance limitations' of python, I've not really found it
to be too deficient at the things I want it to do. In fact, often, due to
its exceptionally well optimised high-level data types, I'm often surprised
at exactly *how* fast it is ;-)

For my part, I came in from a firmly Wirthian perspective: Pascal; Modula-2
and Oberon. Aside from the Pascal family of languages, I also know LOADSof
dialects of BASIC; 4GL's like dBase; Assembly (6502, 8080, Z80, 8086, 68000);
DOS/Windows batch language; and a little FORTH.

With Oberon, I though I had found the Grail, but was frustrated by
poor/incomplete implementations of it, or with the licensing terms of the
better implementations. It was at the point that I ditched POW Oberon, that
I made the transition to Python. I, too, was amazed, and I continue to be,
too. That was about 3 years ago...

Python does generate certain problems of its own, though: I recently had to
learn RPG III and IV for work, and going 'back to the dark ages' was
incredibly frustrating and just felt 'bad'. I guess you get spoiled by the
beauty of Python... and by the facilities, libraries and support
infrastructure (i.e. c.l.py).

Python does seem to magnify the flaws in other languages: everything else
seems (to me at least) to be second-best now.

Slither On!

-andyj


Jul 18 '05 #4
Andy Jewell <an**@wild-flower.co.uk> writes:
Python does seem to magnify the flaws in other languages: everything else
seems (to me at least) to be second-best now.


This might be one of the reasons they don't teach Python in schools -
it would be hard for the employers to motivate students to work w/ the
crappy languages the companies expect them to use.

Another aspect of motivation is accomplishment - a thing that might
make a C++ programmer proud of his achievement seems like a trivial 15
minute job for a Pythonista, and when that Pythonista is tasked w/ the
C++ job he doesn't get the kick from the accomplishment. And 6 hours
of debugging that "trivial" program doesn't help either.

--
Ville Vainio http://www.students.tut.fi/~vainio24
Jul 18 '05 #5
Ville Vainio wrote:
Andy Jewell <an**@wild-flower.co.uk> writes:
Python does seem to magnify the flaws in other languages: everything else
seems (to me at least) to be second-best now.
This might be one of the reasons they don't teach Python in schools -
it would be hard for the employers to motivate students to work w/ the
crappy languages the companies expect them to use.


Absolutely. That's the same reason why the only writing implement
they teach you to use in school is a chisel and a marble slab -- if
they taught e.g. word processors it would be hard for employers to
motivate you to use pen and paper.

Another aspect of motivation is accomplishment - a thing that might
make a C++ programmer proud of his achievement seems like a trivial 15
minute job for a Pythonista, and when that Pythonista is tasked w/ the
C++ job he doesn't get the kick from the accomplishment. And 6 hours
of debugging that "trivial" program doesn't help either.


Yep. Managing to write even just "SPQR" with the marble and chisel
without cracking the slab makes you proud (that Q is _so_ tricky!) --
with a word processor, or pen and paper, you'd get no kick from the
accomplishment. And six hours of sandpapering and polishing that
marble slab doesn't help either.

Alex

Jul 18 '05 #6
Alex Martelli wrote:
Ville Vainio wrote:
Andy Jewell <an**@wild-flower.co.uk> writes:
Python does seem to magnify the flaws in other languages: everything
else seems (to me at least) to be second-best now.


This might be one of the reasons they don't teach Python in schools -
it would be hard for the employers to motivate students to work w/ the
crappy languages the companies expect them to use.


Absolutely. That's the same reason why the only writing implement
they teach you to use in school is a chisel and a marble slab -- if
they taught e.g. word processors it would be hard for employers to
motivate you to use pen and paper.

Another aspect of motivation is accomplishment - a thing that might
make a C++ programmer proud of his achievement seems like a trivial 15
minute job for a Pythonista, and when that Pythonista is tasked w/ the
C++ job he doesn't get the kick from the accomplishment. And 6 hours
of debugging that "trivial" program doesn't help either.


Yep. Managing to write even just "SPQR" with the marble and chisel
without cracking the slab makes you proud (that Q is _so_ tricky!) --
with a word processor, or pen and paper, you'd get no kick from the
accomplishment. And six hours of sandpapering and polishing that
marble slab doesn't help either.


Ah, what fools were those ancient Romans to make such a hassle with their
epitaphs, when a small sheet of paper saying "I'll be back in a minute"
would have done as well...

Peter
Jul 18 '05 #7
Peter Otten <__*******@web.de> writes:
Ah, what fools were those ancient Romans to make such a hassle with their
epitaphs, when a small sheet of paper saying "I'll be back in a minute"
would have done as well...


They were obviously billing by the hour.

--
Ville Vainio http://www.students.tut.fi/~vainio24
Jul 18 '05 #8
Alex Martelli wrote:
Ville Vainio wrote:
Another aspect of motivation is accomplishment - a thing that might
make a C++ programmer proud of his achievement seems like a trivial 15
minute job for a Pythonista, and when that Pythonista is tasked w/ the
C++ job he doesn't get the kick from the accomplishment. And 6 hours
of debugging that "trivial" program doesn't help either.


Yep. Managing to write even just "SPQR" with the marble and chisel
without cracking the slab makes you proud (that Q is _so_ tricky!) --
with a word processor, or pen and paper, you'd get no kick from the
accomplishment. And six hours of sandpapering and polishing that
marble slab doesn't help either.


Data point (real world, from a few weeks ago): after spending ~2 weeks (spread
over a month) writing about 1400 lines of C++, debugging a nasty coredump, and
pounding the documentation, I had my 'fast' extension module finished for some
numerical work. Great, sweaty and exhausted but all proud of myself, I turn
my attention to the problem of writing a unittest. I decided to write it in
python, since I figured it would be easier, and an independent implementation
of the algorithm (simple one) should suffice, if tested with enough random
data.

Python code: 15 lines (no, it's NOT a typo: fifteen). Time to write it: 10
minutes.

The sad part (to my ego, at least:)? The python runs faster! The C++ version
is now in the dustbin. At least I learned a bunch about the STL and
templates. The consolation...

Cheers,

f.

ps for those thinking: you must be an idiot of a C++ programmer. That may well
be true. But still, there are reasons for the difference. The C++ version
uses a heavily templated library for handling multidimensional arrays with a
bearable syntax, and g++ isn't the best compiler out there for that kind of
code. The python version relies on Numeric.innerproduct(), which is very well
optimized, and tackles head-on the problem I was avoiding with the templates,
namely very annoying pointer manipulations for multidimensional tensors. The
Numeric guys got their hands dirty, did it once RIGHT, and it works extremely
well.
Jul 18 '05 #9

"Fernando Perez" <fp*******@yahoo.com> wrote in message news:bn**********@peabody.colorado.edu...
Alex Martelli wrote:
Ville Vainio wrote:
Another aspect of motivation is accomplishment - a thing that might
make a C++ programmer proud of his achievement seems like a trivial 15
minute job for a Pythonista, and when that Pythonista is tasked w/ the
C++ job he doesn't get the kick from the accomplishment. And 6 hours
of debugging that "trivial" program doesn't help either.
Yep. Managing to write even just "SPQR" with the marble and chisel
without cracking the slab makes you proud (that Q is _so_ tricky!) --
with a word processor, or pen and paper, you'd get no kick from the
accomplishment. And six hours of sandpapering and polishing that
marble slab doesn't help either.


Data point (real world, from a few weeks ago): after spending ~2 weeks (spread
over a month) writing about 1400 lines of C++, debugging a nasty coredump, and
pounding the documentation, I had my 'fast' extension module finished for some
numerical work. Great, sweaty and exhausted but all proud of myself, I turn
my attention to the problem of writing a unittest. I decided to write it in
python, since I figured it would be easier, and an independent implementation
of the algorithm (simple one) should suffice, if tested with enough random
data.

Python code: 15 lines (no, it's NOT a typo: fifteen). Time to write it: 10
minutes.


For a J programmer (www.jsoftware.com) it might as well be just a hundred
characters and half an hour.

Regards,
G-:

The sad part (to my ego, at least:)? The python runs faster! The C++ version
is now in the dustbin. At least I learned a bunch about the STL and
templates. The consolation...

Cheers,

f.

ps for those thinking: you must be an idiot of a C++ programmer. That may well
be true. But still, there are reasons for the difference. The C++ version
uses a heavily templated library for handling multidimensional arrays with a
bearable syntax, and g++ isn't the best compiler out there for that kind of
code. The python version relies on Numeric.innerproduct(), which is very well
optimized, and tackles head-on the problem I was avoiding with the templates,
namely very annoying pointer manipulations for multidimensional tensors. The
Numeric guys got their hands dirty, did it once RIGHT, and it works extremely
well.

Jul 18 '05 #10
"Georgy Pruss" <SE************@hotmail.com> wrote in message news:<RN*********************@twister.southeast.rr .com>...
"Fernando Perez" <fp*******@yahoo.com> wrote in message news:bn**********@peabody.colorado.edu...
Python code: 15 lines (no, it's NOT a typo: fifteen). Time to write it: 10
minutes.


For a J programmer (www.jsoftware.com) it might as well be just a hundred
characters and half an hour.


Cool - APL with ascii input and built-in (or at least standard) graphing.
Jul 18 '05 #11
>
The sad part (to my ego, at least:)? The python runs faster! The C++ version
is now in the dustbin. At least I learned a bunch about the STL and
templates. The consolation...


Out of curiosity, was the C++ compiled without any debugging
information. The STL is really slow with debug on.
Jul 18 '05 #12

Data point (real world, from a few weeks ago): after spending ~2 weeks (spread
over a month) writing about 1400 lines of C++, debugging a nasty coredump, and
pounding the documentation, I had my 'fast' extension module finished for some
numerical work. Great, sweaty and exhausted but all proud of myself, I turn
my attention to the problem of writing a unittest. I decided to write it in
python, since I figured it would be easier, and an independent implementation
of the algorithm (simple one) should suffice, if tested with enough random
data.

Python code: 15 lines (no, it's NOT a typo: fifteen). Time to write it: 10
minutes.

The sad part (to my ego, at least:)? The python runs faster! The C++ version
is now in the dustbin. At least I learned a bunch about the STL and
templates. The consolation...

Cheers,

f.

ps for those thinking: you must be an idiot of a C++ programmer. That may well
be true. But still, there are reasons for the difference. The C++ version
uses a heavily templated library for handling multidimensional arrays with a
bearable syntax, and g++ isn't the best compiler out there for that kind of
code. The python version relies on Numeric.innerproduct(), which is very well
optimized, and tackles head-on the problem I was avoiding with the templates,
namely very annoying pointer manipulations for multidimensional tensors. The
Numeric guys got their hands dirty, did it once RIGHT, and it works extremely
well.

i don't think this is an apples-to-apples comparison. in c++ you wrote everything yourself. in python, you used the
numeric package which someone else wrote. i'm interested in knowing _why_ you chose to write it yourself in c++. and
_why_ you didn't try to write it yourself in python, but instead chose to use an already written library. i just did a
google search for "open source c++ numeric" and got several hits. i'm not putting you down in any way. i'm just
interested in knowing why you made these different decisions for each language.

bryan

Jul 18 '05 #13
MetalOne wrote:

The sad part (to my ego, at least:)? The python runs faster! The C++
version
is now in the dustbin. At least I learned a bunch about the STL and
templates. The consolation...


Out of curiosity, was the C++ compiled without any debugging
information. The STL is really slow with debug on.


Full optimizations on, all debugging off. The bottleneck was not the STL, but
the Blitz++ array code. The problem is that blitz template expressions are
extremely complicated, and g++ is just not up to the task. Tests made by a
blitz developer with the SGI C++ compiler show far better scaling (with the
rank of the tensors), but I needed to run this on linux boxes using g++.

Cheers,

f
Jul 18 '05 #14
Fernando Perez <fp*******@yahoo.com> writes:
Full optimizations on, all debugging off. The bottleneck was not
the STL, but the Blitz++ array code. The problem is that blitz
template expressions are extremely complicated, and g++ is just not
up to the task. Tests made by a blitz developer with the SGI C++
compiler show far better scaling (with the rank of the tensors), but
I needed to run this on linux boxes using g++.


What is that madness? Why not just write in C?
Jul 18 '05 #15
Paul Rubin <http://ph****@NOSPAM.invalid> wrote in message news:<7x************@ruckus.brouhaha.com>...
Fernando Perez <fp*******@yahoo.com> writes:
Full optimizations on, all debugging off. The bottleneck was not
the STL, but the Blitz++ array code. The problem is that blitz
template expressions are extremely complicated, and g++ is just not
up to the task. Tests made by a blitz developer with the SGI C++
compiler show far better scaling (with the rank of the tensors), but
I needed to run this on linux boxes using g++.


What is that madness? Why not just write in C?


Blitz++ is even faster than FORTRAN for some numeric computations. I
doubt C could beat it.

Jeremy
Jul 18 '05 #16
Fernando Perez <fp*******@yahoo.com> writes:
Tests made by a blitz developer with the SGI C++ compiler show far
better scaling (with the rank of the tensors), but I needed to run
this on linux boxes using g++.


What kind of Linux boxes? Intel has a C++ compiler for Linux that is
clamed to be better than GCC. It is not free and naturally only
available for x86, but if you can live with those terms, you could try
the free evaluation version to see if it helps.

--
Juha Autero
http://www.iki.fi/jautero/
Eschew obscurity!
Jul 18 '05 #17
Paul Rubin wrote:
Fernando Perez <fp*******@yahoo.com> writes:
Full optimizations on, all debugging off. The bottleneck was not
the STL, but the Blitz++ array code. The problem is that blitz
template expressions are extremely complicated, and g++ is just not
up to the task. Tests made by a blitz developer with the SGI C++
compiler show far better scaling (with the rank of the tensors), but
I needed to run this on linux boxes using g++.


What is that madness? Why not just write in C?


Have you seen how much fun it is to handle 6-index Numeric arrays in C? That's
why I used blitz++.

Best,

f
Jul 18 '05 #18
Fernando Perez wrote:
Juha Autero wrote:
Fernando Perez <fp*******@yahoo.com> writes:
Tests made by a blitz developer with the SGI C++ compiler show far
better scaling (with the rank of the tensors), but I needed to run
this on linux boxes using g++.


What kind of Linux boxes? Intel has a C++ compiler for Linux that is
clamed to be better than GCC. It is not free and naturally only
available for x86, but if you can live with those terms, you could try
the free evaluation version to see if it helps.


I tested ifc on blitz++ code, and it's not significantly better than g++.


I mean: icc (ifc is their Fortran compiler, not the C/C++ one)

f
Jul 18 '05 #19
Juha Autero wrote:
Fernando Perez <fp*******@yahoo.com> writes:
Tests made by a blitz developer with the SGI C++ compiler show far
better scaling (with the rank of the tensors), but I needed to run
this on linux boxes using g++.


What kind of Linux boxes? Intel has a C++ compiler for Linux that is
clamed to be better than GCC. It is not free and naturally only
available for x86, but if you can live with those terms, you could try
the free evaluation version to see if it helps.


I tested ifc on blitz++ code, and it's not significantly better than g++. The
issue is the expression templates used by blitz++, which ifc doesn't seem to
handle any better than g++. Granted, my testing was not exhaustive, but that
was the quick feeling I got.

Note that these issues creep up in blitz++ only when using their tensor index
objects at high rank, a somewhat dark corner case which obviously puts
compilers in a world of pain.

Best,

f
Jul 18 '05 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Yuri Pimenov | last post by:
Hello, all. Im trying to build python 2.3.2 on openbsd 3.4. First of all, ./configure complains several times about unability to test sys/select.h, sys/lock.h files: .... checking ncurses.h...
3
by: Noah | last post by:
I'm getting configure warnings and make errors when I try to build Python 2.3.4 under OpenBSD 3.5. I don't see anything in the README under "Platform specific note" for OpenBSD. I tried opening...
4
by: Edmond Rusjan | last post by:
Hi All, I'd like to use Python-2.3.4 on OSF1 V4.0, but have trouble installing. With a plain "./configure; make" build, I cannot import socket. If I uncomment the socketmodule in Modules/Setup,...
0
by: Robby Dermody | last post by:
Hey guys (thus begins a book of a post :), I'm in the process of writing a commercial VoIP call monitoring and recording application suite in python and pyrex. Basically, this software sits in a...
4
by: John Salerno | last post by:
I'm considering learning Python, but I don't want to distract myself too much from learning C#. Is there anything that Python can do that C# can't? Or that it can do better/faster/more efficiently,...
1
by: Steve Ametjan | last post by:
I've been trying to get MySQL-python to install on Leopard for the past couple of days, and I keep running into relatively the same error. I'm hoping that someone on this list will be able to...
8
by: karthikbalaguru | last post by:
Hi, One of my python program needs tkinter to be installed to run successfully. I am using Redhat 9.0 and hence tried installing by copying the tkinter-2.2.2-36.i386.rpm alone from the CD 3 to...
0
by: Akira Kitada | last post by:
Hi list, I was trying to build Python 2.6 on FreeBSD 4.11 and found it failed to build some of the modules. """ Failed to find the necessary bits to build these modules: _bsddb ...
0
by: Akira Kitada | last post by:
Hi Marc-Andre, Thanks for the suggestion. I opened a ticket for this issue: http://bugs.python.org/issue4204 Now I understand the state of the multiprocessing module, but it's too bad to see...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.