Re: Sir I can't able to install python

2019-10-22 Thread Igor Korot
Hi, On Tue, Oct 22, 2019 at 5:30 PM Dragon Kumar Thakur wrote: > > Help What did you do and what didn't work? Thank you. > > On Wed 23 Oct, 2019, 1:41 AM Dragon Kumar Thakur, < > abhishekkumarthakur...@gmail.com> wrote: > > > Sir I can't able to install python it's showing error > > > -- > htt

Re: Sir I can't able to install python

2019-10-22 Thread Dragon Kumar Thakur
Help On Wed 23 Oct, 2019, 1:41 AM Dragon Kumar Thakur, < abhishekkumarthakur...@gmail.com> wrote: > Sir I can't able to install python it's showing error > -- https://mail.python.org/mailman/listinfo/python-list

Re: Convert a scientific notation to decimal number, and still keeping the data format as float64

2019-10-22 Thread Richard Damon
On 10/21/19 4:36 PM, doganad...@gmail.com wrote: > On Monday, October 21, 2019 at 4:09:23 PM UTC+3, Piet van Oostrum wrote: >> Piet van Oostrum writes: >> >>> doganad...@gmail.com writes: >>> I dont know much about scala actually. I have just have tried to give 0.0001 and it returned a p

Re: Win32api problems

2019-10-22 Thread Eryk Sun
On 10/22/19, Albert-Jan Roskam wrote: > On 22 Oct 2019 11:23, GerritM wrote: > >> ImportError: DLL load failed: The specified > procedure could not be >> found. Many of the PyWin32 extensions depend on pywintypesXX.dll, and some depend on pythoncomXX.dll. There's a post-installation script that

Re: Win32api problems

2019-10-22 Thread Sibylle Koczian
Am 22.10.2019 um 19:24 schrieb Terry Reedy: ... Is there a win32 list where people might have more knowledge of such? There is: python-wi...@python.org https://mail.python.org/mailman/listinfo/python-win32 If you prefer Gmane: news://news.gmane.org/gmane.comp.python.windows HTH -- htt

Re: Win32api problems

2019-10-22 Thread MRAB
On 2019-10-22 17:31, Albert-Jan Roskam wrote: On 22 Oct 2019 11:23, GerritM wrote: ImportError: DLL load failed: The specified > procedure could not be found. I've had the same error before and I solved it by adding the location where the win32 dlls live to PATH. Maybe PATH gets messed up

Re: Win32api problems

2019-10-22 Thread Terry Reedy
On 10/22/2019 11:42 AM, GerritM wrote: On Tuesday, October 22, 2019 at 12:09:46 PM UTC+2, Terry Reedy wrote: On 10/22/2019 5:23 AM, GerritM wrote: <...snip...> Install 1 at a time and try your normal scripts? Starting from a state of ignorance about interactions between Win32 and other mo

Re: System error while Installing Python 3.7.4 (64 bit).

2019-10-22 Thread Terry Reedy
On 10/22/2019 10:44 AM, Joel Goldstick wrote: On Tue, Oct 22, 2019 at 10:33 AM svenkatabhargava reddy wrote: Hi Team Python, Getting system error while trying to install python 3.7.4 version, also attaching the screen shot of error along with the message. Hoping team will come back soon with

Re: problem with curring in python

2019-10-22 Thread Terry Reedy
On 10/22/2019 6:15 AM, Antoon Pardon wrote: On 22/10/19 12:02, Terry Reedy wrote: On 10/22/2019 4:58 AM, Antoon Pardon wrote: Using python 3.5 I have been experimenting with curried functions. A bit like in Haskell. So I can write the following function: def sum4(a, b, c, d): return a +

Re: Win32api problems

2019-10-22 Thread Albert-Jan Roskam
On 22 Oct 2019 11:23, GerritM wrote: > ImportError: DLL load failed: The specified > procedure could not be found. I've had the same error before and I solved it by adding the location where the win32 dlls live to PATH. Maybe PATH gets messed up during the installation of something. -- htt

Re: Win32api problems

2019-10-22 Thread GerritM
On Tuesday, October 22, 2019 at 12:09:46 PM UTC+2, Terry Reedy wrote: > On 10/22/2019 5:23 AM, GerritM wrote: <...snip...> > > Install 1 at a time and try your normal scripts? Or try them with 3.7. > > -- > Terry Jan Reedy I am working on the Python 2 to Python 3 transition. I found on Intern

Re: System error while Installing Python 3.7.4 (64 bit).

2019-10-22 Thread Joel Goldstick
On Tue, Oct 22, 2019 at 10:33 AM svenkatabhargava reddy wrote: > > Hi Team Python, > > Getting system error while trying to install python 3.7.4 version, also > attaching the screen shot of error along with the message. Hoping team will > come back soon with the solution. > [image: image.png] > >

System error while Installing Python 3.7.4 (64 bit).

2019-10-22 Thread svenkatabhargava reddy
Hi Team Python, Getting system error while trying to install python 3.7.4 version, also attaching the screen shot of error along with the message. Hoping team will come back soon with the solution. [image: image.png] Thanks and Regards, S.V.Bhargava Reddy. -- https://mail.python.org/mailman/lis

Re: problem with curring in python

2019-10-22 Thread Peter Otten
Antoon Pardon wrote: > On 22/10/19 12:02, Terry Reedy wrote: >> On 10/22/2019 4:58 AM, Antoon Pardon wrote: >>> Using python 3.5 >>> >>> I have been experimenting with curried functions. A bit like in Haskell. >>> So I can write the following function: >>> >>> def sum4(a, b, c, d): >>> return a +

Re: problem with curring in python

2019-10-22 Thread Antoon Pardon
On 22/10/19 12:02, Terry Reedy wrote: > On 10/22/2019 4:58 AM, Antoon Pardon wrote: >> Using python 3.5 >> >> I have been experimenting with curried functions. A bit like in Haskell. >> So I can write the following function: >> >> def sum4(a, b, c, d): >> return a + b + c + d >> >> summing = c

Re: Win32api problems

2019-10-22 Thread Terry Reedy
On 10/22/2019 5:23 AM, GerritM wrote: I recently installed IPython, Pandas, Altair, Jupyter, MatPlotLib, and Numpy on my Windows 10, Python27 installation to explore what it can do. All of those 5 packages either have or will stop supporting 2.x. See https://python3statement.org/. When I

Re: problem with curring in python

2019-10-22 Thread Terry Reedy
On 10/22/2019 4:58 AM, Antoon Pardon wrote: Using python 3.5 I have been experimenting with curried functions. A bit like in Haskell. So I can write the following function: def sum4(a, b, c, d): return a + b + c + d summing = curry(sum4) print summing(1)(2)(3)(4) # this prints 10. The p

Re: issue with regular expressions

2019-10-22 Thread joseph pareti
Ok, thanks. It works for me. regards, Am Di., 22. Okt. 2019 um 11:29 Uhr schrieb Matt Wheeler : > > > On Tue, 22 Oct 2019, 09:44 joseph pareti, wrote: > >> the following code ends in an exception: >> >> import re >> pattern = 'Sottoscrizione unica soluzione' >> mylines = []

Re: issue with regular expressions

2019-10-22 Thread Matt Wheeler
On Tue, 22 Oct 2019, 09:44 joseph pareti, wrote: > the following code ends in an exception: > > import re > pattern = 'Sottoscrizione unica soluzione' > mylines = []# Declare an empty list. with open ('tmp.txt', 'rt') as myfile: # Open tmp.txt for reading tex

Win32api problems

2019-10-22 Thread GerritM
I recently installed IPython, Pandas, Altair, Jupyter, MatPlotLib, and Numpy on my Windows 10, Python27 installation to explore what it can do. When I tried to run my normal scripts a few days later, I discovered that win32com and related modules like win32ami give problems: Traceback (most rec

problem with curring in python

2019-10-22 Thread Antoon Pardon
Using python 3.5 I have been experimenting with curried functions. A bit like in Haskell. So I can write the following function: def sum4(a, b, c, d): return a + b + c + d summing = curry(sum4) print summing(1)(2)(3)(4) # this prints 10. The problem is I need the signature of the original

issue with regular expressions

2019-10-22 Thread joseph pareti
the following code ends in an exception: import re pattern = 'Sottoscrizione unica soluzione' mylines = []# Declare an empty list. with open ('tmp.txt', 'rt') as myfile: # Open tmp.txt for reading text. for myline in myfile: # For each lin