Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements

6 Posted Topics

Member Avatar for karansingh

A dictionary might be much better suited for what you're trying to achieve. builds = {'a': "123", 'b': "456", 'c': "789"} build_src = ['a','b','c'] build_list = {} for word in build_src: build_list[word] = builds.get(word, None) print build_list Output: {'a': '123', 'c': '789', 'b': '456'}

Member Avatar for Aakashdata
-1
344
Member Avatar for Aakashdata

I have been in involved in the core IT field for 5 years. Recently, there is an ongoing fad about Data Science. I am not sure if I should change my career and transition into data science. Why should I learn this newly emerging field?

0
269
Member Avatar for Aakashdata
Member Avatar for Aakashdata

I am a fresher and want to learn Pandas (Python). A few professionals I talked to suggested I use the book "Learning Pandas" by Michael Heydt. Should I give it a try? Do you have any other suggestions for me?

Member Avatar for Abhays01
0
256
Member Avatar for Aakashdata
Member Avatar for Aakashdata

The End.