Byte Type in Python Get link Facebook X Pinterest Email Other Apps CODE: x=b'abc' print(type(x)) x=u'abc' print(type(x)) x='abc' print(type(x)) OUTPUT: <class 'bytes'> <class 'str'> <class 'str'> Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment