Question
dict() function isn't working properly on the cloud server (Python3)
Hi, i’m having problem using python3 on my Ubuntu 16.04.3 x64 with the dict() function
when i use it on my own PC it works fine but on the cloud server isn’t running well..
after sorting my dictionary with sotred() function i get this output (example):
[(1, {'car': 'red'}, 2, {'bike': 'green'}, 3, {'plane': 'white'})]
when i want it to turn the tuple to dictionary i use dict() (example):
dict([(1, {'car': 'red'}, 2, {'bike': 'green'}, 3, {'plane': 'white'})])
but when use the dict function it reorder everything randomly (example):
{2, {'bike': 'green'}, 3, {'plane': 'white'}, 1, {'car': 'red'}}
any idea why?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×