Python перевод строки в двоичное число

binascii — Convert between binary and ASCII¶

The binascii module contains a number of methods to convert between binary and various ASCII-encoded binary representations. Normally, you will not use these functions directly but use wrapper modules like uu or base64 instead. The binascii module contains low-level functions written in C for greater speed that are used by the higher-level modules.

a2b_* functions accept Unicode strings containing only ASCII characters. Other functions only accept bytes-like objects (such as bytes , bytearray and other objects that support the buffer protocol).

Changed in version 3.3: ASCII-only unicode strings are now accepted by the a2b_* functions.

The binascii module defines the following functions:

Convert a single line of uuencoded data back to binary and return the binary data. Lines normally contain 45 (binary) bytes, except for the last line. Line data may be followed by whitespace.

binascii. b2a_uu ( data , * , backtick = False ) ¶

Convert binary data to a line of ASCII characters, the return value is the converted line, including a newline char. The length of data should be at most 45. If backtick is true, zeros are represented by ‘`’ instead of spaces.

Changed in version 3.7: Added the backtick parameter.

Convert a block of base64 data back to binary and return the binary data. More than one line may be passed at a time.

If strict_mode is true, only valid base64 data will be converted. Invalid base64 data will raise binascii.Error .

  • Conforms to RFC 3548.
  • Contains only characters from the base64 alphabet.
  • Contains no excess data after padding (including excess padding, newlines, etc.).
  • Does not start with a padding.

Changed in version 3.11: Added the strict_mode parameter.

Convert binary data to a line of ASCII characters in base64 coding. The return value is the converted line, including a newline char if newline is true. The output of this function conforms to RFC 3548.

Changed in version 3.6: Added the newline parameter.

Convert a block of quoted-printable data back to binary and return the binary data. More than one line may be passed at a time. If the optional argument header is present and true, underscores will be decoded as spaces.

binascii. b2a_qp ( data , quotetabs = False , istext = True , header = False ) ¶

Convert binary data to a line(s) of ASCII characters in quoted-printable encoding. The return value is the converted line(s). If the optional argument quotetabs is present and true, all tabs and spaces will be encoded. If the optional argument istext is present and true, newlines are not encoded but trailing whitespace will be encoded. If the optional argument header is present and true, spaces will be encoded as underscores per RFC 1522. If the optional argument header is present and false, newline characters will be encoded as well; otherwise linefeed conversion might corrupt the binary data stream.

Читайте также:  PHP Program to show current page URL

binascii. crc_hqx ( data , value ) ¶

Compute a 16-bit CRC value of data, starting with value as the initial CRC, and return the result. This uses the CRC-CCITT polynomial x 16 + x 12 + x 5 + 1, often represented as 0x1021. This CRC is used in the binhex4 format.

binascii. crc32 ( data [ , value ] ) ¶

Compute CRC-32, the unsigned 32-bit checksum of data, starting with an initial CRC of value. The default initial CRC is zero. The algorithm is consistent with the ZIP file checksum. Since the algorithm is designed for use as a checksum algorithm, it is not suitable for use as a general hash algorithm. Use as follows:

print(binascii.crc32(b"hello world")) # Or, in two pieces: crc = binascii.crc32(b"hello") crc = binascii.crc32(b" world", crc) print('crc32 = '.format(crc)) 

Changed in version 3.0: The result is always unsigned.

binascii. b2a_hex ( data [ , sep [ , bytes_per_sep=1 ] ] ) ¶ binascii. hexlify ( data [ , sep [ , bytes_per_sep=1 ] ] ) ¶

Return the hexadecimal representation of the binary data. Every byte of data is converted into the corresponding 2-digit hex representation. The returned bytes object is therefore twice as long as the length of data.

Similar functionality (but returning a text string) is also conveniently accessible using the bytes.hex() method.

If sep is specified, it must be a single character str or bytes object. It will be inserted in the output after every bytes_per_sep input bytes. Separator placement is counted from the right end of the output by default, if you wish to count from the left, supply a negative bytes_per_sep value.

>>> import binascii >>> binascii.b2a_hex(b'\xb9\x01\xef') b'b901ef' >>> binascii.hexlify(b'\xb9\x01\xef', '-') b'b9-01-ef' >>> binascii.b2a_hex(b'\xb9\x01\xef', b'_', 2) b'b9_01ef' >>> binascii.b2a_hex(b'\xb9\x01\xef', b' ', -2) b'b901 ef' 

Changed in version 3.8: The sep and bytes_per_sep parameters were added.

Return the binary data represented by the hexadecimal string hexstr. This function is the inverse of b2a_hex() . hexstr must contain an even number of hexadecimal digits (which can be upper or lower case), otherwise an Error exception is raised.

Similar functionality (accepting only text string arguments, but more liberal towards whitespace) is also accessible using the bytes.fromhex() class method.

Exception raised on errors. These are usually programming errors.

exception binascii. Incomplete ¶

Exception raised on incomplete data. These are usually not programming errors, but may be handled by reading a little more data and trying again.

Support for RFC compliant base64-style encoding in base 16, 32, 64, and 85.

Support for UU encoding used on Unix.

Support for quoted-printable encoding used in MIME email messages.

Источник

Перевод строки в двоичный код в Python

В этой статье мы узнаем, как преобразовать и перевести строку в ее двоичный код в Python. Мы знаем, что строки представляют собой последовательность строк и обозначаются кавычками.

Двоичные числа представлены в виде нулей и единиц, информация всегда кодируется в двоичном формате, поскольку это то, что понимает компьютер.

Методы преобразования строки в двоичный файл, которые мы будем использовать здесь, включают join(), ord(), format() и bytearray().

Мы должны взять соответствующие значения ASCII символов, которые присутствуют в строке, и преобразовать их в двоичные.

Давайте посмотрим на описание функций, которые мы взяли в нашем наборе инструментов:

  1. join() – берет все элементы и объединяет их в единый объект (в результате получается одна строка).
  2. ord() – этот метод принимает символ и преобразует его в соответствующее значение UNICODE.
  3. format() – метод принимает значение и вставляет его там, где присутствуют заполнители, он также используется для объединения частей строки с заданными интервалами.
  4. bytearray() – возвращает массив байтов.

Следующая программа показывает, как это можно сделать:

# declaring the string str_to_conv = "Let's learn Python" # printing the string that will be converted print("The string that we have taken is ",str_to_conv) # using join() + ord() + format() to convert into binary bin_result = ''.join(format(ord(x), '08b') for x in str_to_conv) # printing the result print("The string that we obtain binary conversion is ",bin_result)
The string that we have taken is Let's learn Python The string that we obtain binary conversion is 010011000110010101110100001001110111001100100000011011000110010101100001011100100110111000100000010100000111100101110100011010000110111101101110

Давайте разберемся, что мы сделали в вышеуказанной программе.

  1. Прежде всего, мы объявили строку, которую нужно преобразовать в двоичную форму, со значением «Let’s learn Python».
  2. Следующим шагом является отображение созданной нами строки, чтобы с помощью вывода было легко понять, какая из них является нашей строкой и каков ее двоичный эквивалент.
  3. Затем мы использовали метод format() и указали его параметры как ord() и ’08b’, который берет каждый символ из нашей строки с помощью цикла for и конвертирует их в двоичный формат.
  4. Общий результат сохраняется в переменной bin_result и, наконец, мы отображаем его значение.

В следующем примере мы сделаем то же самое, используя bytearray().

# declaring the string str_to_conv = "Let's learn Python" # printing the string that will be converted print("The string that we have taken is ",str_to_conv) # using join(), format() and bytearray() to convert into binary bin_result = ''.join(format(x,'08b') for x in bytearray(str_to_conv,'utf-8')) # printing the result print("The string that we obtain binary conversion is ",bin_result)
The string that we have taken is Let's learn Python The string that we obtain binary conversion is 010011000110010101110100001001110111001100100000011011000110010101100001011100100110111000100000010100000111100101110100011010000110111101101110

Давайте посмотрим, насколько отличался вышеуказанный подход.

  1. Прежде всего, мы объявили строку, которую нужно преобразовать в двоичную форму, со значением «Let’s learn Python».
  2. Следующим шагом является отображение созданной нами строки, чтобы с помощью вывода было легко понять, какая из них является нашей строкой и каков ее двоичный эквивалент.
  3. Затем мы использовали функцию bytearray(), в которой каждый символ из строки берется с помощью цикла for и конвертируется в двоичный.
  4. Общий результат сохраняется в переменной bin_result и, наконец, мы отображаем его значение.

Источник

Python | Convert String to Binary

Data conversion have always been widely used utility and one among them can be conversion of a string to it’s binary equivalent. Let’s discuss certain ways in which this can be done.

Method #1 : Using join() + ord() + format() The combination of above functions can be used to perform this particular task. The ord function converts the character to it’s ASCII equivalent, format converts this to binary number and join is used to join each converted character to form a string.

Python3

The original string is : GeeksforGeeks The string after binary conversion : 01000111011001010110010101101011011100110110011001101111011100100100011101100101011001010110101101110011

Time Complexity: O(N) where N is the lenght of the input string.

Auxiliary Space: O(N)

Method #2 : Using join() + bytearray() + format() This method is almost similar to the above function. The difference here is that rather than converting the character to it’s ASCII using ord function, the conversion at once of string is done by bytearray function.

Python3

The original string is : GeeksforGeeks The string after binary conversion : 01000111011001010110010101101011011100110110011001101111011100100100011101100101011001010110101101110011

Method #3 : Using join() + bin() + zfill()

we define a function str_to_binary(string) that takes in a string as its input.

We then create an empty list called binary_list, which will be used to store the binary conversions of each character in the input string.

We then use a for loop to iterate through each character in the input string. For each character, we use the ord() function to convert it to its ASCII equivalent, and then use the bin() function to convert that integer to a binary string. The bin() function returns a string with a ‘0b’ prefix, so we use list slicing to remove that prefix.

After that we use the zfill(8) method to pad the binary conversion with leading zeroes until it reaches a length of 8. The zfill() method pads the string on the left with a specified character (in this case, ‘0’) until it reaches the desired length.

Then we append the binary conversion to the binary_list and after that we join all the binary values in the list and return as a single string by using join() method.

Finally, we test the function with an example input of the string “GeeksforGeeks”. The function returns the binary string representation of the input string.

Источник

Оцените статью