Skip to main content

Home/ Useful Technologies/ Group items tagged programmers

Rss Feed Group items tagged

George Bradford

Python: Introduction for Programmers - University Computing Service - 1 views

  •  
    "Course notes This course is part of the Scientific Computing series, and as such many of the examples chosen are of most relevance to scientific computing. The course notes (in various forms) are available here. The files used during the course are available here. This course is aimed at those who already know how to program in another high level programming language (such as C/C++, Fortran, Java, Perl or Visual Basic) and who now wish to learn Python. (Those with little or no prior programming experience should try the "Python: Introduction for Absolute Beginners" course instead.) The aim of this course is to provide sufficient familiarity with Python that attendees can attend any of our more advanced Python courses and easily follow any of the widely available Python tutorials on the more complex aspects of the language."
George Bradford

Learn to Program using Python: Lesson 1, Getting Started - 0 views

  •  
    This is the first in a series of online tutorial lessons designed to teach you how to program using the Python scripting language. There is something for just about everyone here. Beginners start at the beginning, and experienced programmers jump in further on. You simply need to enter the series of lessons at the point that best fits your prior programming knowledge.
George Bradford

Reading a tab delimited text file. - 1 views

  •  
    "You could also use the csv module import csv myfileobj = open("myfiletab.txt","read") csv_read = csv.reader(myfileobj,dialect=csv.excel_tab) myval1 = [] myval2 = [] myval3 = [] for line in csv_read: # filter header and stuff using some criterion if len(line) = 3: myval1.append(line[0]) myval2.append(line[1]) myval3.append(line[2])"
George Bradford

Python3: Structured text files (CSV) - University Computing Service - 0 views

  •  
    Python 3 - Reading CSV files
1 - 4 of 4
Showing 20 items per page