Friday, 13 June 2014

Get Parent Directory via Python

Get the parent directory of a folder/file in python. Using the "os" library its possible using python. Lets try to understand with an example >>> import os >>> os.path.dirname('D:\Workspace\8.0.0.0 - INT') Output will be as: 'D:\\Workspace' Same if...

Merge Two CSV Into One CSV

Hello my so lovely friends, So how are your days going on? Hope you guys doing some experimenting. NOOO.. not an issue. During my office hours I met with a problem to merge two CSV's into one on the basis of the common header, no need to include those records with mis match...

Wednesday, 11 June 2014

Very very thanks

Want to thanks all those who visited my blog for their respective quires. No views of my blog is more than 5000. Its all due to you my friends. Please share your suggestions or want to see any improvemen...

Saturday, 7 June 2014

Difference Between Compiler and Interpreter

A Compiler and Interpreter both carry out the same purpose – convert a high level language (like C, Java) instructions into the binary form which is understandable by computer hardware. Specific compilers/interpreters are designed for different high level languages. However both...

Oracle Dual Table

I'm very new to oracle, so as of now no knowledge, but learning as I've to survive in IT industry :P. NO other my dear friends. During my learning I met with a term "Dual Table". So whatever I learned going to share with you. Hope will help a pro who is new to this field just...

Friday, 30 May 2014

Thursday, 24 April 2014

From CMD change directory from C to D

Friend I'm back. From last 3 years fall in love with python only, so forgot windows..LOLZZZ.... While using windows facing an issue to change the directory from C drive to D drive. But found solution for the same. Lets explain via an example. Here we go..... Lets consider...

Tuesday, 1 April 2014

Friday, 28 February 2014

Get the Content-Type of an URL

Hey everybody, Have you ever tried to get the content type of any website via python, If not try like this. I tried on python terminal. OR >>> import urllib >>> res = urllib.urlopen("https://www.wslb2b.ford.com/login.cgi") >>> http_message = res.info() >>>...