python 3.6.3. zlib compression
up vote
1
down vote
favorite
I am trying to Compress a string in python 3.6.3 using zlib, but getting an error(TypeError: a bytes-like object is required, not 'str') , it was supposed to work on python 2.7- versions, here is my simple code:
import zlib
a='hellohellohelloheeloohegregrf'
b=zlib.compress(a)
print(b)
python-3.x compression zlib
add a comment |
up vote
1
down vote
favorite
I am trying to Compress a string in python 3.6.3 using zlib, but getting an error(TypeError: a bytes-like object is required, not 'str') , it was supposed to work on python 2.7- versions, here is my simple code:
import zlib
a='hellohellohelloheeloohegregrf'
b=zlib.compress(a)
print(b)
python-3.x compression zlib
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am trying to Compress a string in python 3.6.3 using zlib, but getting an error(TypeError: a bytes-like object is required, not 'str') , it was supposed to work on python 2.7- versions, here is my simple code:
import zlib
a='hellohellohelloheeloohegregrf'
b=zlib.compress(a)
print(b)
python-3.x compression zlib
I am trying to Compress a string in python 3.6.3 using zlib, but getting an error(TypeError: a bytes-like object is required, not 'str') , it was supposed to work on python 2.7- versions, here is my simple code:
import zlib
a='hellohellohelloheeloohegregrf'
b=zlib.compress(a)
print(b)
python-3.x compression zlib
python-3.x compression zlib
asked yesterday
bala bharath
144
144
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
import zlib
a='hellohellohelloheeloohegregrf'
b=zlib.compress(a.encode("utf-8"))
print(b)
Alternative:
import zlib
a= b'hellohellohelloheeloohegregrf'
b=zlib.compress(a)
print(b)
In Python2.x
this string literal is called a str
object but it's stored as bytes
.
In Python3.x
this string literal is a str
object and its type is Unicode
. So, one need to prefix it with b
or use .encode
to get bytes
object.
Thanks bro, its working now :-)
– bala bharath
yesterday
@balabharath Please accept the answer. :)
– Chirag
yesterday
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
accepted
import zlib
a='hellohellohelloheeloohegregrf'
b=zlib.compress(a.encode("utf-8"))
print(b)
Alternative:
import zlib
a= b'hellohellohelloheeloohegregrf'
b=zlib.compress(a)
print(b)
In Python2.x
this string literal is called a str
object but it's stored as bytes
.
In Python3.x
this string literal is a str
object and its type is Unicode
. So, one need to prefix it with b
or use .encode
to get bytes
object.
Thanks bro, its working now :-)
– bala bharath
yesterday
@balabharath Please accept the answer. :)
– Chirag
yesterday
add a comment |
up vote
0
down vote
accepted
import zlib
a='hellohellohelloheeloohegregrf'
b=zlib.compress(a.encode("utf-8"))
print(b)
Alternative:
import zlib
a= b'hellohellohelloheeloohegregrf'
b=zlib.compress(a)
print(b)
In Python2.x
this string literal is called a str
object but it's stored as bytes
.
In Python3.x
this string literal is a str
object and its type is Unicode
. So, one need to prefix it with b
or use .encode
to get bytes
object.
Thanks bro, its working now :-)
– bala bharath
yesterday
@balabharath Please accept the answer. :)
– Chirag
yesterday
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
import zlib
a='hellohellohelloheeloohegregrf'
b=zlib.compress(a.encode("utf-8"))
print(b)
Alternative:
import zlib
a= b'hellohellohelloheeloohegregrf'
b=zlib.compress(a)
print(b)
In Python2.x
this string literal is called a str
object but it's stored as bytes
.
In Python3.x
this string literal is a str
object and its type is Unicode
. So, one need to prefix it with b
or use .encode
to get bytes
object.
import zlib
a='hellohellohelloheeloohegregrf'
b=zlib.compress(a.encode("utf-8"))
print(b)
Alternative:
import zlib
a= b'hellohellohelloheeloohegregrf'
b=zlib.compress(a)
print(b)
In Python2.x
this string literal is called a str
object but it's stored as bytes
.
In Python3.x
this string literal is a str
object and its type is Unicode
. So, one need to prefix it with b
or use .encode
to get bytes
object.
edited yesterday
answered yesterday
Chirag
571210
571210
Thanks bro, its working now :-)
– bala bharath
yesterday
@balabharath Please accept the answer. :)
– Chirag
yesterday
add a comment |
Thanks bro, its working now :-)
– bala bharath
yesterday
@balabharath Please accept the answer. :)
– Chirag
yesterday
Thanks bro, its working now :-)
– bala bharath
yesterday
Thanks bro, its working now :-)
– bala bharath
yesterday
@balabharath Please accept the answer. :)
– Chirag
yesterday
@balabharath Please accept the answer. :)
– Chirag
yesterday
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53372006%2fpython-3-6-3-zlib-compression%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown