-- 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 &
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
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
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:
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
>>
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
(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
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
confused how to go about...
thanks
suresh
--
http://mail.python.org/mailman/listinfo/python-list
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
check_call('./dir_name/executable')
Any suggestions?
thanks
suresh
--
http://mail.python.org/mailman/listinfo/python-list
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
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
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
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
>
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
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
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
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
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
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
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
u want the all sexye flimes ues this
u want me see this ***
***
http;//lesbiangroupsexy.blogspot.com/
--
http://mail.python.org/mailman/lis
[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
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
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
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
. What do you think ?
regards,
Suresh
--
http://mail.python.org/mailman/listinfo/python-list
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
>>
>>
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
d = e = x()
>>> c
14
>>> d
14
>>> e
14
>>>
Thanks.
regards,
Suresh
--
http://mail.python.org/mailman/listinfo/python-list
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,
>
>
on just for this.
Is this the easiest/straight-forward way to do this?
regards,
Suresh
--
http://mail.python.org/mailman/listinfo/python-list
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
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
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
way of doing this.
Thanks,
regards,
Suresh
--
http://mail.python.org/mailman/listinfo/python-list
s1 and False
for s2.
Thanks
--
Suresh
--
http://mail.python.org/mailman/listinfo/python-list
but could not find any function.
regards,
Suresh
--
http://mail.python.org/mailman/listinfo/python-list
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
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
41 matches
Mail list logo