why is order_response Nonetype and how to use it in python ? (convert to text, csv, excel or pandas df)

order_response = {'code': 1101, 'message': 'Successfully placed order', 's': 'ok', 'id': '24042200335728'}
x = print(order_response)
type(x)

OUTPUT:
{'code': 1101, 'message': 'Successfully placed order', 's': 'ok', 'id': '24042200335728'}
NoneType
1 reply