Re: question on the 'calendar' function

2018-11-20 Thread Ben Finney
o1bigtenor writes: > On Tue, Nov 20, 2018 at 12:09 PM Ben Finney > wrote: > > o1bigtenor writes: > > > It could be useful to see the longer time spans as weeks rather > > > than as days but seeing the larger time frames only as months > > > would enable the planning that I need to do. > > > >

Re: Reading 'scientific' csv using Pandas?

2018-11-20 Thread Martin Schöön
Den 2018-11-19 skrev Martin Schöön : > I spoke too early. Upon closer inspection I get the first column with > decimal '.' and the rest with decimal ','. I have tried the converter > thing to no avail :-( > Problem solved! This morning I woke up with the idea of testing if all this fuss may be cau

Re: question on the 'calendar' function

2018-11-20 Thread o1bigtenor
On Tue, Nov 20, 2018 at 12:09 PM Ben Finney wrote: > > o1bigtenor writes: > > > I am in the process of learning my first computer programming language > > (unless g-code counts and then it is my second - - - grin). It > > definitely is a big world out there. > > Welcome, and congratulations on st

Re: question on the 'calendar' function

2018-11-20 Thread o1bigtenor
On Tue, Nov 20, 2018 at 11:50 AM Schachner, Joseph wrote: > > It's possible I don't understand the question. The calendar functions are > NOT limited to this year or any limited range. > > Example: > import calendar > print( calendar.monthcalendar(2022, 12) ) > > Prints lists of dates in each we

Re: question on the 'calendar' function

2018-11-20 Thread Ben Finney
o1bigtenor writes: > I am in the process of learning my first computer programming language > (unless g-code counts and then it is my second - - - grin). It > definitely is a big world out there. Welcome, and congratulations on starting with Python! > The calendar function has a lot of versatil

RE: question on the 'calendar' function

2018-11-20 Thread Schachner, Joseph
It's possible I don't understand the question. The calendar functions are NOT limited to this year or any limited range. Example: import calendar print( calendar.monthcalendar(2022, 12) ) Prints lists of dates in each week of December 2022. It prints: [[0, 0, 0, 1, 2, 3, 4], [5, 6, 7, 8, 9, 10

Re: Have I Been Banned?

2018-11-20 Thread Wildman via Python-list
On Tue, 20 Nov 2018 16:39:39 +, Jon Ribbens wrote: > On 2018-11-20, Wildman wrote: >> In the past I have participated in the group without any >> problems. I access the forum through the usenet mirror >> and I am still using the same newsreader and account. >> Recently I made some followup p

Have I Been Banned?

2018-11-20 Thread Wildman via Python-list
In the past I have participated in the group without any problems. I access the forum through the usenet mirror and I am still using the same newsreader and account. Recently I made some followup posts to the group and they never showed up. Have I been banned? If so, I would appreciate it to kno

Re: Have I Been Banned?

2018-11-20 Thread Jon Ribbens
On 2018-11-20, Wildman wrote: > In the past I have participated in the group without any > problems. I access the forum through the usenet mirror > and I am still using the same newsreader and account. > Recently I made some followup posts to the group and they > never showed up. Have I been ban

Re: bottledaemon stop/start doesn't work if killed elsewhere

2018-11-20 Thread Adam Funk
On 2018-11-18, Dan Sommers wrote: > On 11/18/18 1:21 PM, MRAB wrote:> On 2018-11-18 17:50, Adam Funk wrote: > >> Hi, > >> > >> I'm using bottledaemon to run a little REST service on a Pi that takes > >> input from other machines on the LAN and stores stuff in a database. > >> I have a cron job to

Re: Suggestions for plotting slide rule & sector scales?

2018-11-20 Thread Adam Funk
On 2018-11-08, Stefan Ram wrote: > Adam Funk writes: >>and get a line 100 mm long with a log scale on the top and a linear >>scale on the bottom. > > From what I have heard, > > pyqt.sourceforge.net/Docs/PyQt4/qx11info.html#appDpiX > > will give you the dots per inch (link not validated). > >

Basic pynomo instructions not working

2018-11-20 Thread Adam Funk
Hi, I'm trying to use the basic stuff in pynomo which I've installed with pip3, but I run into this problem trying to the basic stuff in the documentation: #v+ $ python3 Python 3.6.7 (default, Oct 22 2018, 11:32:17) [GCC 8.2.0] on linux Type "help", "copyrig

question on the 'calendar' function

2018-11-20 Thread o1bigtenor
Greetings I am in the process of learning my first computer programming language (unless g-code counts and then it is my second - - - grin). It definitely is a big world out there. The calendar function has a lot of versatility and shows care in its development. There is one area where I don't u

Re: on the prng behind random.random()

2018-11-20 Thread Christian Gollwitzer
Am 19.11.18 um 22:05 schrieb Robert Girault: Chris Angelico writes: On Tue, Nov 20, 2018 at 7:31 AM Robert Girault wrote: Nice. So Python's random.random() does indeed use mt19937. Since it's been broken for years, why isn't it replaced by something newer like ChaCha20? Is it due to backw