Re: pygame "font not intialized"

2021-03-12 Thread 2QdxY4RzWzUUiLuE
On 2021-03-12 at 17:27:36 -0500, Quentin Bock wrote: > my code is almost identical to this so I hope it's okay that I don't > include all of my code > error message: > font = pygame.font.Font('freesansbold.ttf', 32) > pygame.error: font not initialized > > Tutorial Link: https://www.youtube.com/

pygame "font not intialized"

2021-03-12 Thread Quentin Bock
my code is almost identical to this so I hope it's okay that I don't include all of my code error message: font = pygame.font.Font('freesansbold.ttf', 32) pygame.error: font not initialized Tutorial Link: https://www.youtube.com/watch?v=FfWpgLFMI7w Timestamp to this part of the video: 1:55:08 --

Uninstall error

2021-03-12 Thread Premmy
Hi. I am trying to uninstall python on my computer because i found a better one but its not getting deleted from control panel. can you please help me -- Regards, N.V.S. Prem Kumar Mobile: 07502069339 -- https://mail.python.org/mailman/listinfo/python-list

Scientific Software Developer | Job position at CMCC Foundation, Italy

2021-03-12 Thread info cmcc
*Please, feel free to circulate * *to anyone you think may be interested.**---* *Scientific Software Developer (code 12305)* *Deadline: April 4th, 2021* The CMCC is taking into consideration the possibil

Re: Why assert is not a function?

2021-03-12 Thread Marco Sulla
On Thu, 11 Mar 2021 at 23:11, Ethan Furman wrote: > Basically, you are looking at two different philosophies: > > - Always double check, get good error message when something fails > > vs > > - check during testing and QA, turn off double-checks for production for best > performance possible. In

Re: Why assert is not a function?

2021-03-12 Thread Chris Angelico
On Sat, Mar 13, 2021 at 12:11 AM Richard Damon wrote: > > On 3/12/21 12:31 AM, Chris Angelico wrote: > > On Fri, Mar 12, 2021 at 3:53 PM Cameron Simpson wrote: > >> For me, try/except is for when something might reasonably "go wrong" in > >> normal use, even niche normal use. Whereas assert is fo

<< robot control >>

2021-03-12 Thread Alex Kaye
I am looking for a package or module that would use my Rasberry Pi 3 wirelessly to control a land vehicle or someone to consult with to discuss some of my options. Maybe with joystick commands. Alex -- https://mail.python.org/mailman/listinfo/python-list

Re: Why assert is not a function?

2021-03-12 Thread Richard Damon
On 3/12/21 12:31 AM, Chris Angelico wrote: > On Fri, Mar 12, 2021 at 3:53 PM Cameron Simpson wrote: >> For me, try/except is for when something might reasonably "go wrong" in >> normal use, even niche normal use. Whereas assert is for things which >> should _never_ occur. Roughly, again for me, tr

Re: yield from () Was: Re: weirdness with list()

2021-03-12 Thread Thomas Jollans
On 03/03/2021 01:01, Cameron Simpson wrote: On 02Mar2021 15:06, Larry Martell wrote: I discovered something new (to me) yesterday. Was writing a unit test for generator function and I found that none of the function got executed at all until I iterated on the return value. Aye. Generators are