- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
6 Posted Topics
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'}
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?
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?
How can I create different types of joins in SAP HANA?
The End.
Aakashdata