The Tutorials in this series are created using Python 3.4.3, IPython 5.1.0 on Ubuntu 12.04. Python is a programming language that lets you work more quickly and integrate your systems more effectively. Read more
Foss : Python 3.4.3 - English
Outline: load data from file single column multiple columns separated by delimiter cat command loadtxt() columns separated by spaces columns separated by semi-colon unpack argument ..
Outline: plotting data list list element-wise squaring plot data points clear plots errorbar function dots or filled circles in plot plot with red pluses explore documentation in ip..
Outline: scatter plot scatter function scatter plot with various arguments logarithmic plot loglog function cat command loadtxt function unpack parameter of loadtxt linspace scatte..
Outline: * Use Python 3.4.3 * Use IPython 5.1.0 * To produce scatter plot * Plot a pie chart using pie() function * Plot a bar chart using bar() function * Access the matplotlib online..
Outline: What is a list? Define List List index Create: List with elements Empty list List within a list Find out the list length using len function Access elements using their..
Outline: For loop syntax Example to use For loop Indentation in for loop Create blocks in python using for Iterate over a list using for loop How to get out of the block use of Range(..
Outline: What are strings? How are strings denoted in Python? String concatenation Multiply a string with an integer Accessing individual elements of a string Accessing elements of a s..
Outline: Open a file Open() function Different Modes of opening a file Read() method Read the content of the file line by line Read the entire content of the file Append the lines of ..
Outline: What is Parsing data? split function and its syntax What is string tokenizing? How to split a string on whitespace? split function with argument strip function and example Co..
Outline: Statistical operations in Python Installation of Numpy for mathematical and logical operations Installation of pip to install python libraries loadtxt() function with example G..
Outline: Overview of array Usage of numpy library How to create arrays How to create two dimensional array arange() method reshape() method How to find the shape of an array? Create ..
Outline: Create a one-dimensional array Create a two-dimensional array Accessing individual elements of an array How to change the value of an array How to change more than one elements..
Outline: Read images into arrays How to access parts of an array? imread command imshow command show command How to check the dimensions of an array? Example to access parts of an ima..
Outline: Create matrices from lists asmatrix method arange and reshape methods Basic matrix operation Addition, subtraction and multiplication of a matrix Determinant of a matrix eye(..
Outline: flatten() function Example to convert a multidimensional matrix to single dimension matrix Frobenius norm of a matrix Demonstration of Frobenius norm of a matrix Inverse of a m..
Outline: Generating a Least Square fit line Generating L vs t square loadtxt function Usage of numpy library Plotting L vs t square Steps for least square fit line Matrix formulation ..
Outline: Data types in Python Demonstration of int, float and complex data types with examples Different functions associated with int data type Complex numbers and their functions Bool..
Outline: List, string and tuple sequence data types with examples How to access a list using index numbers? Access the string elements Access the tuple elements How to add different seq..
Outline: Various output statements Print a string Print a string with newline character How to use format operators? Example for integer format Example for string format Example for f..
Outline: if condition statement Demonstration of if statement with example if/else condition statement with example Importance of indentation in a program Usage of colon in program Con..