Re: pyttsx3 installation error

2020-03-13 Thread jlaatech
On Saturday, 14 March 2020 01:52:51 UTC+2, Marco Sulla wrote: > It's a know bug. Solution: https://stackoverflow.com/a/59909885/1763602 Thank you for your concern.I tried the above solution first and it worked as well. Thank you -- https://mail.python.org/mailman/listinfo/python-list

Re: pyttsx3 installation error

2020-03-13 Thread jlaatech
On Friday, 13 March 2020 23:45:08 UTC+2, MRAB wrote: > On 2020-03-13 19:52, jlaat...@gmail.com wrote: > > > > Got the same error here please help > > ERROR: Command errored out with exit status 1: > > command: 'c:\users\jerald lashy > > jeffery\appdata\local\programs\python\python38-32\pyt

Re: Have you some experience / link about difference between Python builded with gcc and clang?

2020-03-13 Thread Marco Sulla
Well, I suppose we have a winner: pyperf_bench_3_8_gcc_9_2.json = Performance version: 1.0.0 Report on Linux-4.15.0-76-generic-x86_64-with-glibc2.27 Number of logical CPUs: 4 Start date: 2020-03-13 19:36:17.585796 End date: 2020-03-13 20:35:09.605718 pyperf_bench_3_8_

Re: pyttsx3 installation error

2020-03-13 Thread Marco Sulla
It's a know bug. Solution: https://stackoverflow.com/a/59909885/1763602 -- https://mail.python.org/mailman/listinfo/python-list

Profiler showing path dependency?

2020-03-13 Thread Go Luhng
Consider a simple call graph: `main()` calls `foo()`, which calls `bar()`. Then `main()` calls `qux()` which also calls `bar()`, but with different parameters. When you run the above through cProfile and view the result in SnakeViz, you will see `main()` calling `foo()` and `qux()`, with each of t

Re: Need some GUIDE

2020-03-13 Thread Marco Sulla
On Fri, 13 Mar 2020 at 20:06, pro_ bro wrote: > First of all sry for asking this type of question. > I started my Python journey a year ago. From then I learned a lot(Basics to > advanced topics ) Can I ask you what had motivated you? > never took me into the python stream after getting placed i

Re: pyttsx3 installation error

2020-03-13 Thread MRAB
On 2020-03-13 19:52, jlaat...@gmail.com wrote: Got the same error here please help ERROR: Command errored out with exit status 1: command: 'c:\users\jerald lashy jeffery\appdata\local\programs\python\python38-32\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users

Re: pyttsx3 installation error

2020-03-13 Thread jlaatech
Got the same error here please help ERROR: Command errored out with exit status 1: command: 'c:\users\jerald lashy jeffery\appdata\local\programs\python\python38-32\python.exe' -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\Jerald Lashy Jeffery\\AppData\\Local\\Temp\\

Re: using classes

2020-03-13 Thread Pieter van Oostrum
joseph pareti wrote: > one more question. In the code below, there are 2 init() methods, one for > the class 'Fahrzeug' and > one for the class 'PKW'. > The program works when I instantiate the class as: > > fiat = PKW("Fiat Marea",50,0) > > but it fails if I say: > > fiat = PKW("Fia

Need some GUIDE

2020-03-13 Thread pro_ bro
First of all sry for asking this type of question. I started my Python journey a year ago. From then I learned a lot(Basics to advanced topics ) But when it comes to getting a job(Python related) I failed a lot. Every time I attended the recruitment process they offer python in the coding test but

Re: Python question

2020-03-13 Thread Michael Torrie
On 3/12/20 4:19 PM, Mike Dewhirst wrote: > I'm not sure I understand what you are saying. How is gmail > behaviour breaking things? The problem is if I post to a mailing list from gmail (either the web interface or Thunderbird via Google's SMTP servers), Google will silently discard my own message

Re: Multiple comparisons in a single statement

2020-03-13 Thread Chris Angelico
On Fri, Mar 13, 2020 at 8:36 PM Stephen Tucker wrote: > > *Chris:* Thank you for your confirmation. > > *All: *For the record, I meant that the tuples are all the same. The > tuples I have in mind contain strings, so the issue regarding the > "equality" (or otherwise) of 0 and 0.0 does not aris

Re: using classes

2020-03-13 Thread Peter J. Holzer
On 2020-03-13 09:46:29 +0100, joseph pareti wrote: > The program works when I instantiate the class as: > > fiat = PKW("Fiat Marea",50,0) > > but it fails if I say: > > *fiat = PKW("Fiat Marea",50,0,1)* The __init__ method of PKW has this signature: > def __init__(self, bez, ge, ins): You

Re: Multiple comparisons in a single statement

2020-03-13 Thread Stephen Tucker
*Chris:* Thank you for your confirmation. *All: *For the record, I meant that the tuples are all the same. The tuples I have in mind contain strings, so the issue regarding the "equality" (or otherwise) of 0 and 0.0 does not arise in my case. Stephen. To answer the question On Thu, Mar 12

Re: using classes

2020-03-13 Thread joseph pareti
one more question. In the code below, there are 2 init() methods, one for the class 'Fahrzeug' and one for the class 'PKW'. The program works when I instantiate the class as: fiat = PKW("Fiat Marea",50,0) but it fails if I say: *fiat = PKW("Fiat Marea",50,0,1)* *Traceback (most recent call l