On 30/12/12 23:25:39, Evan Driscoll wrote:
> On 12/30/2012 4:19 PM, Hans Mulder wrote:
>> If it's okay to modify the original list, you can simply do:
>>
>> l[0] = split(l[0], ", ")
>>
>> If modifying the original is not okay, the simple solution would
>> be to copy it first:
>>
>> l2 = l
>> l2[0]
On 12/30/2012 4:19 PM, Hans Mulder wrote:
> If it's okay to modify the original list, you can simply do:
>
> l[0] = split(l[0], ", ")
>
> If modifying the original is not okay, the simple solution would
> be to copy it first:
>
> l2 = l
> l2[0] = split(l2[0], ", ")
Um, that doesn't copy the lis
On 28/12/12 18:46:45, Alex wrote:
> Manatee wrote:
>
>> On Friday, December 28, 2012 9:14:57 AM UTC-5, Manatee wrote:
>>> I read in this:
>>>
>>> ['C100, C117', 'X7R 0.033uF 10% 25V 0603', '0603-C_L, 0603-C_N',
>>> '10', '2', '', '30', '15463-333', 'MURATA', 'GRM188R71E333KA01D',
>>> 'Digi-Key',
Manatee wrote:
> On Friday, December 28, 2012 9:14:57 AM UTC-5, Manatee wrote:
> > I read in this:
> >
> > ['C100, C117', 'X7R 0.033uF 10% 25V 0603', '0603-C_L, 0603-C_N',
> > '10', '2', '', '30', '15463-333', 'MURATA', 'GRM188R71E333KA01D',
> > 'Digi-Key', '490-1521-1-ND', '']
> >
> >
> >
>
On Friday, December 28, 2012 9:14:57 AM UTC-5, Manatee wrote:
> I read in this:
>
> ['C100, C117', 'X7R 0.033uF 10% 25V 0603', '0603-C_L, 0603-C_N', '10', '2',
> '', '30', '15463-333', 'MURATA', 'GRM188R71E333KA01D', 'Digi-Key',
> '490-1521-1-ND', '']
>
>
>
> Then I need to convert it to thi
In article <8f5cfb99-d1d7-42d7-858a-89dd23cd5...@googlegroups.com>,
Manatee wrote:
> I read in this:
> ['C100, C117', 'X7R 0.033uF 10% 25V 0603', '0603-C_L, 0603-C_N', '10', '2',
> '', '30', '15463-333', 'MURATA', 'GRM188R71E333KA01D', 'Digi-Key',
> '490-1521-1-ND', '']
>
> Then I need to co
Gary Herron wrote:
Support Desk wrote:
Hello all,
I am using os.popen to get a list returned of vpopmail
users, something like this
x = os.popen('/home/vpopmail/bin/vuserinfo -n -D
mydomain.com).readlines()
x returns a list, of usernames, and I am trying to append the
Support Desk wrote:
Hello all,
I am using os.popen to get a list returned of vpopmail
users, something like this
x = os.popen('/home/vpopmail/bin/vuserinfo -n -D mydomain.com).readlines()
x returns a list, of usernames, and I am trying to append the
usernames with the do
domain.strip()
Assuming domain is the string with the newline.
-Steve Johnson
On Jul 28, 2008, at 1:32 PM, Support Desk wrote:
Hello all,
I am using os.popen to get a list returned of vpopmail
users, something like this
x = os.popen('/home/vpopmail/bin/vuserinfo -n -D
mydomai