Skip to content
Permalink
Browse files
Update transcoder.py
Fixed typo
  • Loading branch information
Stanley9990 authored and Stanley9990 committed Sep 28, 2020
1 parent 849ef8e commit fa230a5de648c8fcdfc9279428459ab54862416b
Showing 1 changed file with 1 addition and 1 deletion.
@@ -61,7 +61,7 @@ def asOctal(data):
def asBinary(data):
"""String to printable binary conversion
Creates and returns a string containing the binarya representation of the input string. For example, with the input "ABC", the function will return "0b1000001 0b1000010 0b1000011"
Creates and returns a string containing the binary representation of the input string. For example, with the input "ABC", the function will return "0b1000001 0b1000010 0b1000011"
Args:
data (string): a string to convert into the binary representation

0 comments on commit fa230a5

Please sign in to comment.