weixin_39816946的博客 I want in the end a list: myList = [1609.32,57813.48,991.31] 解决方案 Try this way: my_list = [elem[0] for elem in your_dict.values()] Offtop: I think you shouldn't use camelcase, it isn't python way...
CHM单的博客I have the following declaration:Dictionary> like = new Dictionary>();I need to get the first element out, but do not know the key or value. What's the best way to do this?解决方案Edit To ...