Python Read Table file

Source: Internet
Author: User


There is a table file, sometimes you need to handle the header, you can use the Linecache module

#!/usr/bin/env python# -*- coding: ascii -*-import linecacheimport  FILEINPUTIMPORT SYSFROM COLLECTIONS IMPORT DEFAULTDICTINPUTFILE = SYS.ARGV[1] Headerline = linecache.getline (inputfile, 1). Strip () #print (headerline) probenames =  Headerline.split ("\ t") [1:]inputh = open (inputfile,  "R") d = defaultdict (list) for  line in inputh:    if  "Sample"  not in line:         z = line.rstrip (). Split ("\ T") [1:]         for num, p_data in enumerate (z):             if p_data !=  "":                 d[probenames[num]].append (P_data) inputH.close () print (" Nameprobe\tdata ") for p in d:    for x in d[p]:        # Print (X, d[p])         print ("{0}\t{1}". Format (p, x))


Of course, you can also use the Fileinput module


Reference: Https://docs.python.org/3/library/fileinput.html#fileinput.isfirstline

Python Read Table file

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.