Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #78100
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed3.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.000 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'string.': 0.05; 'binary': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'subject:string': 0.09; 'def': 0.12; 'creates': 0.14; 'concat': 0.16; 'lambda': 0.16; 'missing?': 0.16; 'received:80.91.229.3': 0.16; 'received:dip0.t-ipconnect.de': 0.16; 'received:plane.gmane.org': 0.16; 'received:t-ipconnect.de': 0.16; "skip:' 60": 0.16; 'typeerror:': 0.16; 'subject:python': 0.16; 'wrote:': 0.18; '>>>': 0.22; 'example': 0.22; 'header:User- Agent:1': 0.23; 'byte': 0.24; 'bytes': 0.24; 'string,': 0.24; 'this:': 0.26; 'header:X-Complaints-To:1': 0.27; 'function': 0.29; 'array': 0.29; '"",': 0.31; 'file': 0.32; 'figure': 0.32; '(most': 0.33; 'subject: (': 0.35; 'subject:with': 0.35; "can't": 0.35; 'convert': 0.35; 'but': 0.35; 'to:addr:python-list': 0.38; 'list,': 0.38; 'recent': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'length': 0.61; 'nagy': 0.84; 'pad': 0.84 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Peter Otten <__peter__@web.de> |
| Subject | Re: pad binary string with a given byte value (python 3) |
| Date | Sat, 20 Sep 2014 14:05:43 +0200 |
| Organization | None |
| References | <541D5025.4070604@shopzeus.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset="UTF-8" |
| Content-Transfer-Encoding | 8Bit |
| X-Gmane-NNTP-Posting-Host | p57bdabd5.dip0.t-ipconnect.de |
| User-Agent | KNode/4.13.3 |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.14164.1411214758.18130.python-list@python.org> (permalink) |
| Lines | 40 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1411214758 news.xs4all.nl 2945 [2001:888:2000:d::a6]:47002 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:78100 |
Show key headers only | View raw
Nagy László Zsolt wrote:
> >>> BS = 16
> >>> pad = lambda s: s + (BS - len(s) % BS) * chr(BS - len(s) % BS)
> >>> pad('L')
> 'L\x0f\x0f\x0f\x0f\x0f\x0f\x0f\x0f\x0f\x0f\x0f\x0f\x0f\x0f\x0f'
> >>> pad(b'L')
> Traceback (most recent call last):
> File "<stdin>", line 1, in <module>
> File "<stdin>", line 1, in <lambda>
> TypeError: can't concat bytes to str
>
> How do I write this function so it can pad byte strings? chr(charcode)
> creates a normal string, not a binary string.
>
> I can figure out way for example this:
>
> >>> b'T'+bytearray([32])
>
> but it just don't seem right to create a list, then convert it to a byte
> array and then convert it to a binary string. What am I missing?
bytes/str.ljust()
>>> def pad(b, n=16, c=b"\x0f"):
... length = (len(b)+n-1)//n*n
... return b.ljust(length, c)
...
>>> pad(b"abc", 5)
b'abc\x0f\x0f'
>>> pad(b"abcde", 5)
b'abcde'
>>> pad(b"abcdef", 5)
b'abcdef\x0f\x0f\x0f\x0f'
>>> pad("abcde", 5, "*")
'abcde'
>>> pad("abcdef", 5, "*")
'abcdef****'
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: pad binary string with a given byte value (python 3) Peter Otten <__peter__@web.de> - 2014-09-20 14:05 +0200
csiph-web