Fwd: Issues in python 3.11.0 (64-bit) installation

2022-11-03 Thread Suresh Babu
-- Forwarded message - From: Suresh Babu Date: Thu, 3 Nov 2022, 16:37 Subject: Issues in python 3.11.0 (64-bit) installation To: Sir/ Madam, I downloaded the latest version of python i.e. python 3.11.0 ( 64-bit) in my laptop recently. But the " py launcher " and &

Unable to install folium using python version 3.8.4.

2020-09-15 Thread Suresh Unnikrishnan
Team, I use python version 3.8.4. I tried to import folium using IDLE but it was unsuccessful as it throws errors. After that, I tried to use pip install folium in the command prompt but it also throws an error. Kindly advise the steps to install folium. Regards, U.Suresh. -- https://mail.python

What are the minimum requirements to get a job in?

2012-12-13 Thread suresh . pinnapa
My aim is to get a job into google or cisco or facebok. I have basic knowledge in python,c,java and good in javascript,html,css, database concepts. If i learn django and python. Shall I get my dream job? Please suggest me -- http://mail.python.org/mailman/listinfo/python-list

SAP MM Cupertino, CA

2012-09-10 Thread Suresh Kumar
Hi, This is Girish, - IT Recruiter from SancroSoft USA Inc. Please respond with updated resume in MS-Word .doc Format with the following details to gir...@sancrosoftusa.com Full Name : Location : Contact Number : Email : Availability : Visa Status : SAP MM Location : Cupertino, CA Duration:

Re: Fwd: class print method...

2011-12-05 Thread Suresh Sharma
Dave / Ryan Thanks i have got it and it worked after using repr statement. Thanks everyone for their valuable feedback. On Mon, Dec 5, 2011 at 6:11 PM, Lie Ryan wrote: > On 12/05/2011 10:18 PM, Suresh Sharma wrote: > >> >> Pls help its really frustrating >>

Fwd: class print method...

2011-12-05 Thread Suresh Sharma
Pls help its really frustrating -- Forwarded message -- From: Suresh Sharma Date: Monday, December 5, 2011 Subject: class print method... To: "d...@davea.name" Dave, Thanx for the quick response, i am sorry that i did not explain correctly look at the code below inspi

class print method...

2011-12-04 Thread Suresh Sharma
(memory location) i even tried using __str__ but calling it also produces the same result. Can anyone please help me how to get my objects printed. I googled a lot but could not find anything relevant. thanks in advance regards suresh -- http://mail.python.org/mailman/listinfo/python-list

Re: No matter what I do, IDLE will not work...

2011-11-11 Thread Suresh Sharma
Hello all, I need to know how to connect python 3.2 with mysql db i am newbie and appreciate your help to enhance my skills. I googled a lot but nothing came up Ned Deily wrote: >In article ><415ed0ec-65a5-41df-b81e-d74786c74...@s5g2000vbe.googlegroups.com>, > CAMERON ALLEY wrote: >> IT WOR

packaging a python application

2011-08-27 Thread suresh
confused how to go about... thanks suresh -- http://mail.python.org/mailman/listinfo/python-list

Re: changing current dir and executing a shell script

2011-05-27 Thread suresh
On Friday, May 27, 2011 3:19:22 PM UTC-7, Albert Hopkins wrote: > On Fri, 2011-05-27 at 14:25 -0700, suresh wrote: > > Hi, > > I want to execute the following command line stuff from inside python. > > $cd directory > > $./executable > > > > I tried th

changing current dir and executing a shell script

2011-05-27 Thread suresh
check_call('./dir_name/executable') Any suggestions? thanks suresh -- http://mail.python.org/mailman/listinfo/python-list

Wouldn't it be nice if this worked?

2008-08-10 Thread Suresh V.
class A: def add(self, x, y): return x+y class B: pass B.add = A.add print B().add(1, 2) <- gives TypeError: unbound method add() must be called with A instance as first argument -- http://mail.python.org/mailman/listinfo/python-list

Re: Execution speed question

2008-07-29 Thread Suresh Pillai
On Mon, 28 Jul 2008 16:48:28 +0200, Suresh Pillai wrote: > Okay, please consider this my one absolutely stupid post for the year. > I'd like to pretend it never happened but unfortunately the web doesn't > allow that. Having never used sets, I unfort read something tha

Re: Execution speed question

2008-07-28 Thread Suresh Pillai
On Mon, 28 Jul 2008 15:04:43 +0200, Suresh Pillai wrote: > On Mon, 28 Jul 2008 10:44:18 +0200, Suresh Pillai wrote: > >> Since I am doing A LOT of loops over the nodes and the number of nodes >> is also huge, my concern using sets is that in order to iterate over >> th

Re: Execution speed question

2008-07-28 Thread Suresh Pillai
On Mon, 28 Jul 2008 10:44:18 +0200, Suresh Pillai wrote: > Since I am doing A LOT of loops over the nodes and the number of nodes > is also huge, my concern using sets is that in order to iterate over the > set in each step of my simulation, the set items need to be converted to >

Re: Execution speed question

2008-07-28 Thread Suresh Pillai
On Fri, 25 Jul 2008 17:05:27 -0400, Terry Reedy wrote: > If the nodes do not have to be processed in any particular order, then > you could keep them either in a dict, with the value being either On or > Off (True,False)(plus connection data) or a pair of sets, one for On and > one for Off. The a

Re: Execution speed question

2008-07-28 Thread Suresh Pillai
On Fri, 25 Jul 2008 05:46:56 -0700, Iain King wrote: > or 3. build a new list every iteration intead of deleting from the old > one: > > while processing: > new_off_list = [] > for x in off_list: > if goes_on(x): > on_list.append(x) > else: > new_of

Re: Execution speed question

2008-07-28 Thread Suresh Pillai
On Fri, 25 Jul 2008 09:22:06 -0600, Matthew Fitzgibbons wrote: > As for different data structures, it largely depends on how you need to > access the data. If you don't need to index the data, just loop through > it, you might try a linked list. The performance hit in (2) is coming > from the list

Re: Execution speed question

2008-07-28 Thread Suresh Pillai
On Fri, 25 Jul 2008 08:08:57 -0700, Iain King wrote: > On Jul 25, 3:39 pm, Suresh Pillai <[EMAIL PROTECTED]> wrote: >> That's a good comparison for the general question I posed. Thanks. >> Although I do believe lists are less than ideal here and a different >&g

Re: Execution speed question

2008-07-25 Thread Suresh Pillai
On Fri, 25 Jul 2008 16:51:42 +0200, Fredrik Lundh wrote: > Unless I'm missing something, your example keeps going until it's > flagged *all* nodes as "on", which, obviously, kills performance for the > first version as the probability goes down. The OP's question was about > a single pass (but he

Re: Execution speed question

2008-07-25 Thread Suresh Pillai
That's a good comparison for the general question I posed. Thanks. Although I do believe lists are less than ideal here and a different data structure should be used. To be more specific to my case: As mentioned in my original post, I also have the specific condition that one does not know wh

Execution speed question

2008-07-25 Thread Suresh Pillai
e always wondered about (cheap ifs versus extra structure) and with the number of nodes I am considering, it actually becomes an issue. Many Thanks, Suresh -- http://mail.python.org/mailman/listinfo/python-list

sexe day

2008-06-16 Thread suresh
u want the all sexye flimes ues this u want me see this *** *** http;//lesbiangroupsexy.blogspot.com/ -- http://mail.python.org/mailman/lis

Re: subprocess -popen - reading stdout from child - hangs

2007-09-22 Thread Suresh Babu Kolla
[EMAIL PROTECTED] wrote: > Let's say I have this Python file called loop.py: > > import sys > print 'hi' > sys.stdout.flush() > while 1: > pass > > And I want to call it from another Python process and read the value > 'hi'. How would I do it? > > So far I have tried this: > proc = su

Re: module: zipfile.writestr - line endings issue

2007-08-15 Thread Suresh Babu Kolla
Paul Carter wrote: > On Aug 14, 1:32 pm, towers <[EMAIL PROTECTED]> wrote: >> Thanks - your code works for me also. >> >> But I still get the issue when I read the file directly and add it to >> the archive. >> >> Say if I: >> >> 1. Use the test.csv file created with your code - currently the line

Memory Leak in Python 2.5.1?

2007-06-05 Thread Suresh Kumar
t;2000,i++){ Py_Initialize(); Sleep(1000); Py_Finalize(); } } The above code runs out of memory after 1000 + iterations. To me this looks like a memory leak, Does anyone out there have any idea whats happening here? Regards, Suresh -- "Everything of valu

Re: Multiple assignment and the expression on the right side

2006-02-20 Thread Suresh Jeevanandam
Alex Martelli wrote: > Suresh Jeevanandam <[EMAIL PROTECTED]> wrote: > >> Dear all, >> I read in "Python in a Nutshell" that when we have multiple assignments >> made on a single line, it is equivalent to have those many simple >> assignments

Mutable numbers

2006-02-20 Thread Suresh Jeevanandam
. What do you think ? regards, Suresh -- http://mail.python.org/mailman/listinfo/python-list

Re: Augmented assignment

2006-02-20 Thread Suresh Jeevanandam
Thanks Alex. I was not aware of mtimeit. regards, Suresh Alex Martelli wrote: > Suresh Jeevanandam <[EMAIL PROTECTED]> wrote: > >> Hi, >> Is there any gain in performance because of augmented assignments. >> >> x += 1 vs x = x+1 >> >>

Augmented assignment

2006-02-20 Thread Suresh Jeevanandam
Hi, Is there any gain in performance because of augmented assignments. x += 1 vs x = x+1 Or are both of them the same. regards, Suresh -- http://mail.python.org/mailman/listinfo/python-list

Multiple assignment and the expression on the right side

2006-02-20 Thread Suresh Jeevanandam
d = e = x() >>> c 14 >>> d 14 >>> e 14 >>> Thanks. regards, Suresh -- http://mail.python.org/mailman/listinfo/python-list

Re: mapping functions and lambda

2006-02-15 Thread Suresh Jeevanandam
I got it: dict([k.split('=') for k in s.split(',')]) regards, Suresh Suresh Jeevanandam wrote: > Given a string > s = 'a=1,b=2' > > I want to create a dictionary {'a': '1', 'b': '2'} > > I did, > >

mapping functions and lambda

2006-02-15 Thread Suresh Jeevanandam
on just for this. Is this the easiest/straight-forward way to do this? regards, Suresh -- http://mail.python.org/mailman/listinfo/python-list

finding the intersection of a list of Sets

2006-01-31 Thread Suresh Jeevanandam
I have a list of sets in variable lsets . Now I want to find the intersection of all the sets. r = lsets[0] for s in r[0:]: r = r & s Is there any other shorter way? Thanks in advance, Suresh -- http://mail.python.org/mailman/listinfo/python-list

Finding the relative path of a file from a dir

2006-01-20 Thread Suresh Jeevanandam
Hi, a = '/home/suresh/doc/html/a1/' b = '/home/suresh/doc/' I am looking for a standard function which will return the location of b relative to a i.e. '../..' I have gone through the os and os.path modules, but could not find any function

Re: parsing engineering symbols

2005-12-21 Thread Suresh Jeevanandam
Exactly what I wanted. It would be nice if the standard float function takes care of these. regards, Suresh > how about: > > SI_prefixes = { > 'Y':24, 'Z':21, 'E':18, 'P':15, 'T':12, 'G':9, 'M':6, 'k

numarray :: multiplying all the elements in 1d array

2005-12-20 Thread Suresh Jeevanandam
way of doing this. Thanks, regards, Suresh -- http://mail.python.org/mailman/listinfo/python-list

checking if a string contains a number

2005-12-20 Thread Suresh Jeevanandam
s1 and False for s2. Thanks -- Suresh -- http://mail.python.org/mailman/listinfo/python-list

parsing engineering symbols

2005-12-20 Thread Suresh Jeevanandam
but could not find any function. regards, Suresh -- http://mail.python.org/mailman/listinfo/python-list

openings on java with japanese language

2005-12-14 Thread suresh . reddy
send your profile to [EMAIL PROTECTED] Job Code: JJ1 Job Description: Skills: Experience in Java, J2EE, Struts and servlets. This is for onsite (Japan) and should be proficient at Japanese Knowledge (Level 3/4). Number of positions : 6 Experience: 3-5 years on

PIL

2005-03-30 Thread suresh mathi
masked the black areas but still the shape is not that clear. Is their any way to open the file in transparent mode or convert it into transparent mode.? Can any one help? SURESH M. __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam