Re: Does this dataframe look correct?

2020-06-28 Thread Jim
On 6/28/20 8:53 PM, MRAB wrote: On 2020-06-28 23:11, Jim wrote: linux mint 19.3, python 3.6 I wrote a program to download stock info from yahoo using yfinance. I have been running it unchanged for the past 3 months, today it gave an error. When looping through a list of stocks the error is rand

Re: Does this dataframe look correct?

2020-06-28 Thread MRAB
On 2020-06-28 23:11, Jim wrote: linux mint 19.3, python 3.6 I wrote a program to download stock info from yahoo using yfinance. I have been running it unchanged for the past 3 months, today it gave an error. When looping through a list of stocks the error is random, never the same position in th

Does this dataframe look correct?

2020-06-28 Thread Jim
linux mint 19.3, python 3.6 I wrote a program to download stock info from yahoo using yfinance. I have been running it unchanged for the past 3 months, today it gave an error. When looping through a list of stocks the error is random, never the same position in the list. I wrote the followin

Re: I need to study Python

2020-06-28 Thread Propadovic Nenad
While there are a number of answers here which have a point, I'd first ask why do you want/need to study Python? Because, if you need it for something specific, you might want to focus on learning exactly what you need. In lack of an answer to that question, I'd recommend this: - as a newbie you

Re: Assign Excel cell value from Datepicker widget Selection using Python

2020-06-28 Thread DL Neil via Python-list
On 29/06/20 6:01 AM, narenchund...@gmail.com wrote: Datepicker is returning two different types. before date change its and after change its Well done! When it is printed, the date probably makes sense (to us), and the debug-print has given you the opportunity to make sure the data is exa

Re: Assign Excel cell value from Datepicker widget Selection using Python

2020-06-28 Thread Kushal Kumaran
narenchund...@gmail.com writes: > When I run the python code I should be able to open my Excel and when > I click on one Excel cell I should have my datepicker widget popped up > and I should be able to select any date from my datepicker widget as > my Excel cell value > > Tried below code but in

Re: Assign Excel cell value from Datepicker widget Selection using Python

2020-06-28 Thread narenchunduri
Is there any other way to achieve my query? -- https://mail.python.org/mailman/listinfo/python-list

Re: Assign Excel cell value from Datepicker widget Selection using Python

2020-06-28 Thread narenchunduri
Do we have any other to achive my query -- https://mail.python.org/mailman/listinfo/python-list

Re: Assign Excel cell value from Datepicker widget Selection using Python

2020-06-28 Thread narenchunduri
Datepicker is returning two different types. before date change its and after change its -- https://mail.python.org/mailman/listinfo/python-list

Re: Assign Excel cell value from Datepicker widget Selection using Python

2020-06-28 Thread DL Neil via Python-list
On 29/06/20 3:04 AM, narenchund...@gmail.com wrote: When I run the python code I should be able to open my Excel and when I click on one Excel cell I should have my datepicker widget popped up and I should be able to select any date from my datepicker widget as my Excel cell value Tried below

Re: on generating combinations among a variable list of lists

2020-06-28 Thread Boris Dorestand
Peter Otten <__pete...@web.de> writes: > Boris Dorestand wrote: > >> Say we have [1,3,5,7], [2,3], [1,10]. I'd like to generate >> >> [1,2,1] >> [1,2,10] >> [1,3,1] >> [1,3,10] >> [3,2,1] >> [3,2,10] >> [3,3,1] >> [3,3,10] >> [5, ...] >> ... >> [7,3,10] >> >> The number of

Assign Excel cell value from Datepicker widget Selection using Python

2020-06-28 Thread narenchunduri
When I run the python code I should be able to open my Excel and when I click on one Excel cell I should have my datepicker widget popped up and I should be able to select any date from my datepicker widget as my Excel cell value Tried below code but in vain: (Used jupyter Notebook) from ipywid

Re: on generating combinations among a variable list of lists

2020-06-28 Thread Peter Otten
Boris Dorestand wrote: > Say we have [1,3,5,7], [2,3], [1,10]. I'd like to generate > > [1,2,1] > [1,2,10] > [1,3,1] > [1,3,10] > [3,2,1] > [3,2,10] > [3,3,1] > [3,3,10] > [5, ...] > ... > [7,3,10] > > The number of input lists is variable. The example shows three lists,

[RELEASE] Python 3.7.8 and 3.6.11 now available - last 3.7.x bugfix release

2020-06-28 Thread Ned Deily
https://discuss.python.org/t/python-3-7-8-and-3-6-11-now-available-last-3-7-x-bugfix-release/4583 -- Ned Deily n...@python.org -- [] -- https://mail.python.org/mailman/listinfo/python-list

on generating combinations among a variable list of lists

2020-06-28 Thread Boris Dorestand
Say we have [1,3,5,7], [2,3], [1,10]. I'd like to generate [1,2,1] [1,2,10] [1,3,1] [1,3,10] [3,2,1] [3,2,10] [3,3,1] [3,3,10] [5, ...] ... [7,3,10] The number of input lists is variable. The example shows three lists, but there could be only one or ten lists or any other