On Thu, 11 Feb 2564 BE at 12:52 Grant Edwards
wrote:
> On 2021-02-11, J. Pic wrote:
>
> > I just meant removing the whole "default value mutating" story, not
> > removing mutable variables. Really, I was wondering if there was a use
> case
> > where this actually turns to an advantage,
>
> I've
On Thu, 5 Sep 2562 at 22:00 Madhavan Bomidi wrote:
> Hi,
>
> Can someone help me on how to make the wind rose plotting (similar to the
> figure 2 in the paper:
> https://agupubs.onlinelibrary.wiley.com/doi/epdf/10.1029/2011JD016386) in
> Python?
>
> The input file contains the data in 4 columns:
I had a paddle through the manual at
https://www.gnuradio.org/doc/doxygen/page_python_blocks.html and apparently
some DSP operations use numpy.
Ross
On Wed, 1 Aug 2018 at 11:56 wrote:
>
>
> After some research I found out that "sudo apt-get install python-numpy"
> solved the problem.
>
> Can an
The "plist" abbreviation goes back to at least 1958 as it was used in
the Lisp implementation [0]. And it may even predate Lisp. I'm very
sure that what actually went into a plist has often changed over the
years, but the name persists.
Lisp also used "association lists" [1] which were a key
cesco wrote:
> Hi,
>
> is there a one-liner to accomplish the following task?
>>From the list
> l = ['string1', 'string2', 'string3']
> generate the list of lists
> l = [['string1'], ['string1', 'string2'], ['string1', 'string2',
> 'string3']]
>
> Any help would be appreciated.
>
> Thanks
> Fran
On Tue, 23 Aug 2005 20:58:11 -0700, Randy Bush wrote:
> i am trying to insert into a singly linked list
>
> hold = self.next
> self.next = DaClass(value)
> self.next.next = hold
>
> but i suspect (from print statement insertions) that the result
> is not as i expect. as the concept
> I want to connect to unix machine using ssh to run some commands .
>
I have not tried this, but it might be useful.
http://www.lag.net/paramiko/
HTH,
Ross
--
http://mail.python.org/mailman/listinfo/python-list
On Thu, 14 Jul 2005 15:46:40 -0700, David Smith wrote:
> Why does code snippet one work correctly, but not two. The only
> difference is the placement of the "else". I know that indentation
> affects execution, but how does it change behavior in the following
> examples? Thank you.
>
> 1. for