moi writes:
> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a écrit :
>> moi writes:
>>
>> 'ÿ'.encode('utf-8')
>> > b'\xc3\xbf'
>> 'ÿ'.encode('utf-16-le')
>> > b'\xff\x00'
>> 'ÿ'.encode('utf-32-le')
>> > b'\xff\x00\x00\x00'
>>
>
>> That all looks as expected.
> Yes
>
>>Is t
On Fri, Mar 6, 2020 at 9:31 PM Ben Bacarisse wrote:
>
> moi writes:
>
> > Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a écrit :
> >> moi writes:
> >>
> >> 'ÿ'.encode('utf-8')
> >> > b'\xc3\xbf'
> >> 'ÿ'.encode('utf-16-le')
> >> > b'\xff\x00'
> >> 'ÿ'.encode('utf-32-le')
> >
On 2020-03-06, moi wrote:
> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a écrit :
>> moi writes:
>> 'ÿ'.encode('utf-8')
>> > b'\xc3\xbf'
>> 'ÿ'.encode('utf-16-le')
>> > b'\xff\x00'
>> 'ÿ'.encode('utf-32-le')
>> > b'\xff\x00\x00\x00'
>
>> That all looks as expected.
> Yes
>
>
Hi All,
I am new to python.
I have a irregular nested lists in a list.
Please help me to iterate through each element.
Thanks much in advance.
Sample Ex
aList = [[2,'jkj'],[],[],['kite',88,'ooo','pop','push','pull'],['hello']]
expected output:
2,jkj,,,kite,88,ooo,pop,push,pull,hello
--
https
First i must say i use Bottle, but the same may also be the case in Flask too.
I ask here and not in sub Bottle because there are only a few people there and
i receive no responses.
Actualy since i started here let me say what i have found.
Iam just trying to post html form data to the followin
Jon Ribbens writes:
> On 2020-03-06, moi wrote:
>> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a écrit :
>>> moi writes:
>>> 'ÿ'.encode('utf-8')
>>> > b'\xc3\xbf'
>>> 'ÿ'.encode('utf-16-le')
>>> > b'\xff\x00'
>>> 'ÿ'.encode('utf-32-le')
>>> > b'\xff\x00\x00\x00'
>>
>>> Tha
sinnd...@gmail.com writes:
> Hi All,
> I am new to python.
> I have a irregular nested lists in a list.
> Please help me to iterate through each element.
>
> Thanks much in advance.
>
> Sample Ex
>
> aList = [[2,'jkj'],[],[],['kite',88,'ooo','pop','push','pull'],['hello']]
>
> expected output:
>
Thank you Marco for at least taking the time to read my message even if
you do not agree with me on things. And no disrespect to you. But I came
here for python related questions and help. Not to be called suspicious
and untrustworthy only because I am concerned about security of users and
for bein
On 03/03/2020 01:50 PM, Marco Sulla via Python-list wrote:
People of Python List, I strongly discourage you to support this user.
He is quite suspicious for the following reasons:
Marco, this is not an appropriate response. If you have concerns about list
behavior then email the list owners.
A better way would be to just do
nestedl = [[2], [], [], [l, b, n]]#nested list
for a in nestedl: #taking all the sublist
for b in a: #iterating through the sub
print(b)
Though it is easy the only limitation is that it works only if the elements
are lists. Which we
On 2020-03-06, Pieter van Oostrum wrote:
> Jon Ribbens writes:
>> On 2020-03-06, moi wrote:
>>> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a écrit :
moi writes:
'ÿ'.encode('utf-8')
> b'\xc3\xbf'
'ÿ'.encode('utf-16-le')
> b'\xff\x00'
'ÿ'.encod
This is not a place to quarrel our only task is to discuss and help other
learn and learn ourselves. To Mr. Marco what Mr. Lee says is correct. Since
he is working on a cryptocurrency project and he might use our original
code in his final project I don't think offering money is bad. After all
ther
On Fri, Mar 6, 2020 at 6:55 AM Pieter van Oostrum
wrote:
> sinnd...@gmail.com writes:
>
> > Hi All,
> > I am new to python.
> > I have a irregular nested lists in a list.
> > Please help me to iterate through each element.
> >
> > Thanks much in advance.
> >
> > Sample Ex
> >
> > aList = [[2,'jkj
On 03/03/2020 01:50 PM, Marco Sulla via Python-list wrote:
> People of Python List, I strongly discourage you to support this user.
> He is quite suspicious for the following reasons:
Marco, this is not an appropriate response. If you have concerns about list
behavior then email the list owners
sinnd...@gmail.com writes:
> Hi All,
> I am new to python.
> I have a irregular nested lists in a list.
> Please help me to iterate through each element.
>
> Thanks much in advance.
>
> Sample Ex
>
> aList = [[2,'jkj'],[],[],['kite',88,'ooo','pop','push','pull'],['hello']]
>
> expected output:
> 2
On 2020-03-06, Pieter van Oostrum wrote:
> Jon Ribbens writes:
>> On 2020-03-06, moi wrote:
>>> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a ÄCcritâ :
moi writes:
'Ä¿'.encode('utf-8')
> b'\xc3\xbf'
'Ä¿'.encode('utf-16-le')
> b'\xff\x00'
'Ä¿'.
Am 05.03.20 um 02:48 schrieb Michael Torrie:
> On 3/4/20 4:51 PM, J A wrote:
>> I was wondering g if there was a way to distribute an application that took
>> advantage of user input like a windows .msi does. On linux of course.
>
> Several installer frameworks can make interactive installers for L
A better way would be to just do
nestedl = [[2], [], [], [l, b, n]]#nested list
for a in nestedl: #taking all the sublist
for b in a: #iterating through the sub
print(b)
Though it is easy the only limitation is that it works only if the elements are
lists. Which we
On 2020-03-06, moi wrote:
> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a ÄCcritâ :
>> moi writes:
>> 'Ä¿'.encode('utf-8')
>> > b'\xc3\xbf'
>> 'Ä¿'.encode('utf-16-le')
>> > b'\xff\x00'
>> 'Ä¿'.encode('utf-32-le')
>> > b'\xff\x00\x00\x00'
>
>> That all looks as expected.
> Ye
On Fri, Mar 6, 2020 at 9:31 PM Ben Bacarisse wrote:
>
> moi writes:
>
> > Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a ÄCcrit :
> >> moi writes:
> >>
> >> 'Ä¿'.encode('utf-8')
> >> > b'\xc3\xbf'
> >> 'Ä¿'.encode('utf-16-le')
> >> > b'\xff\x00'
> >> 'Ä¿'.encode('utf-32-le')
On 2020-03-05, Michael Torrie wrote:
> On 3/4/20 4:51 PM, J A wrote:
>> I was wondering g if there was a way to distribute an application that took
>> advantage of user input like a windows .msi does. On linux of course.
>
> Several installer frameworks can make interactive installers for Linux.
>
First i must say i use Bottle, but the same may also be the case in Flask too.
I ask here and not in sub Bottle because there are only a few people there and
i receive no responses.
Actualy since i started here let me say what i have found.
Iam just trying to post html form data to the followin
moi writes:
> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a écrit :
>> moi writes:
>>
>> 'ÿ'.encode('utf-8')
>> > b'\xc3\xbf'
>> 'ÿ'.encode('utf-16-le')
>> > b'\xff\x00'
>> 'ÿ'.encode('utf-32-le')
>> > b'\xff\x00\x00\x00'
>>
>
>> That all looks as expected.
> Yes
>
>>Is the
Hi All,
I am new to python.
I have a irregular nested lists in a list. Please help me to iterate through
each element.
Thanks much in advance.
Sample Ex
aList = [[2,'jkj'],[],[],['kite',88,'ooo','pop','push','pull'],['hello']]
expected output:
2,jkj,,,kite,88,ooo,pop,push,pull,hello
--
https:
This is not a place to quarrel our only task is to discuss and help other learn
and learn ourselves. To Mr. Marco what Mr. Lee says is correct. Since he is
working on a cryptocurrency project and he might use our original code in his
final project I don't think offering money is bad. After all t
Jon Ribbens writes:
> On 2020-03-06, moi wrote:
>> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a ÄCcritâ :
>>> moi writes:
>>> 'Ä¿'.encode('utf-8')
>>> > b'\xc3\xbf'
>>> 'Ä¿'.encode('utf-16-le')
>>> > b'\xff\x00'
>>> 'Ä¿'.encode('utf-32-le')
>>> > b'\xff\x00\x00\x00'
>>
>>
On Fri, Mar 6, 2020 at 6:55 AM Pieter van Oostrum
wrote:
> sinnd...@gmail.com writes:
>
> > Hi All,
> > I am new to python.
> > I have a irregular nested lists in a list.
> > Please help me to iterate through each element.
> >
> > Thanks much in advance.
> >
> > Sample Ex
> >
> > aList = [[2,'jk
On 2020-03-06, moi wrote:
> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a ÄäCcritÄø :
>> moi writes:
>> 'Ääâ¿'.encode('utf-8')
>> > b'\xc3\xbf'
>> 'Ääâ¿'.encode('utf-16-le')
>> > b'\xff\x00'
>> 'Ääâ¿'.encode('utf-32-le')
>> > b'\xff\x00\x00\x00'
>
>> That all looks as expect
Jon Ribbens writes:
> On 2020-03-06, moi wrote:
>> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a ÄäCcritÄø :
>>> moi writes:
>>> 'Ääâ¿'.encode('utf-8')
>>> > b'\xc3\xbf'
>>> 'Ääâ¿'.encode('utf-16-le')
>>> > b'\xff\x00'
>>> 'Ääâ¿'.encode('utf-32-le')
>>> > b'\xff\x00\x00\x0
On 2020-03-06, Pieter van Oostrum wrote:
> Jon Ribbens writes:
>> On 2020-03-06, moi wrote:
>>> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a ÄäCcritÄø :
moi writes:
'Ääâ¿'.encode('utf-8')
> b'\xc3\xbf'
'Ääâ¿'.encode('utf-16-le')
> b'\xff\x00'
On 03/03/2020 01:50 PM, Marco Sulla via Python-list wrote:
> People of Python List, I strongly discourage you to support this user.
> He is quite suspicious for the following reasons:
Marco, this is not an appropriate response. If you have concerns about list
behavior then email the list owners
sinnd...@gmail.com writes:
> Hi All,
> I am new to python.
> I have a irregular nested lists in a list.
> Please help me to iterate through each element.
>
> Thanks much in advance.
>
> Sample Ex
>
> aList = [[2,'jkj'],[],[],['kite',88,'ooo','pop','push','pull'],['hello']]
>
> expected output:
> 2
First i must say i use Bottle, but the same may also be the case in Flask too.
I ask here and not in sub Bottle because there are only a few people there and
i receive no responses.
Actualy since i started here let me say what i have found.
Iam just trying to post html form data to the followin
On Fri, Mar 6, 2020 at 6:55 AM Pieter van Oostrum
wrote:
> sinnd...@gmail.com writes:
>
> > Hi All,
> > I am new to python.
> > I have a irregular nested lists in a list.
> > Please help me to iterate through each element.
> >
> > Thanks much in advance.
> >
> > Sample Ex
> >
> > aList = [[2,'jk
A better way would be to just do
nestedl = [[2], [], [], [l, b, n]]#nested list
for a in nestedl: #taking all the sublist
for b in a: #iterating through the sub
print(b)
Though it is easy the only limitation is that it works only if the elements are
lists. Which we
This is not a place to quarrel our only task is to discuss and help other learn
and learn ourselves. To Mr. Marco what Mr. Lee says is correct. Since he is
working on a cryptocurrency project and he might use our original code in his
final project I don't think offering money is bad. After all t
On 2020-03-05, Michael Torrie wrote:
> On 3/4/20 4:51 PM, J A wrote:
>> I was wondering g if there was a way to distribute an application that took
>> advantage of user input like a windows .msi does. On linux of course.
>
> Several installer frameworks can make interactive installers for Linux.
>
Thank you Marco for at least taking the time to read my message even if you do
not agree with me on things. And no disrespect to you. But I came here for
python related questions and help. Not to be called suspicious and
untrustworthy only because I am concerned about security of users and for b
moi writes:
> Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a ÄCcrit :
>> moi writes:
>>
>> 'Ä¿'.encode('utf-8')
>> > b'\xc3\xbf'
>> 'Ä¿'.encode('utf-16-le')
>> > b'\xff\x00'
>> 'Ä¿'.encode('utf-32-le')
>> > b'\xff\x00\x00\x00'
>>
>
>> That all looks as expected.
> Yes
>
>>Is
Am 05.03.20 um 02:48 schrieb Michael Torrie:
> On 3/4/20 4:51 PM, J A wrote:
>> I was wondering g if there was a way to distribute an application that took
>> advantage of user input like a windows .msi does. On linux of course.
>
> Several installer frameworks can make interactive installers for L
On Fri, Mar 6, 2020 at 9:31 PM Ben Bacarisse wrote:
>
> moi writes:
>
> > Le jeudi 5 mars 2020 13:20:38 UTC+1, Ben Bacarisse a ÄäCcrit :
> >> moi writes:
> >>
> >> 'Ääâ¿'.encode('utf-8')
> >> > b'\xc3\xbf'
> >> 'Ääâ¿'.encode('utf-16-le')
> >> > b'\xff\x00'
> >> 'Ääâ¿'.encode('utf-
Hi All,
I am new to python.
I have a irregular nested lists in a list. Please help me to iterate through
each element.
Thanks much in advance.
Sample Ex
aList = [[2,'jkj'],[],[],['kite',88,'ooo','pop','push','pull'],['hello']]
expected output:
2,jkj,,,kite,88,ooo,pop,push,pull,hello
--
https:
On 7/03/20 2:33 AM, Νίκος Βέργος wrote:
First i must say i use Bottle, but the same may also be the case in Flask too.
I ask here and not in sub Bottle because there are only a few people there and
i receive no responses.
Actualy since i started here let me say what i have found.
Iam just try
Hi there,
My name is Bernard Tyers. I'm a UX designer and have recently started
working on the PSF project to improve the usability of pip, funded by
MOSS/CZI.
I want to let you know about the pip UX Studies we've started today, and
encourage you to sign-up and take part.
The pip Team is looking
On 2020-03-06, Jon Ribbens wrote:
> What's the bug, or source of amusement?
Oh, that's fun. There's a Russian Fidonet gateway, that somehow
still exists, that's re-injecting usenet posts back into the group.
--
https://mail.python.org/mailman/listinfo/python-list
I am trying to do something very simple but having no success in finding
out how to do it. I just want to use the Python zipfile module to create
a zip file with a specific directory structure and create and write to
files inside those subdirectories (not files already on disk). The
documentation
This is guidechimp -https://github.com/Labs64/GuideChimp
Is there anything similar to this in python?
--
https://mail.python.org/mailman/listinfo/python-list
47 matches
Mail list logo