“Dict to Bajtes Python” Kod odpowiedzi

bajty Pythona do dyktowania

# credit to the Stack Overflow user in the source linnk
# Python3

import ast

byte_str = b"{'one': 1, 'two': 2}"
dict_str = byte_str.decode("UTF-8")
my_data = ast.literal_eval(dict_str)

print(repr(my_data))
>>> {'one': 1, 'two': 2}
wolf-like_hunter

Dict to Bajtes Python

# You can use indent option in json.dumps() to obtain \n symbols:

	import json

	user_dict = {'name': 'dinesh', 'code': 'dr-01'}
	user_encode_data = json.dumps(user_dict, indent=2).encode('utf-8')
	print(user_encode_data)

# Output:
	b'{\n  "name": "dinesh",\n  "code": "dr-01"\n}'
rng70

Odpowiedzi podobne do “Dict to Bajtes Python”

Pytania podobne do “Dict to Bajtes Python”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu