Challenge the talent inside you, participate in Animate 2024!     Click here for details.

Search Tutorials

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


About 39 results found.
  1. Instruction Sheet
  2. Installation Sheet
  3. Brochures

Foss : Python 3.4.3 - English

Outline: >Use Python 3.5.2 >Use Ipython version 5.1.0 >IPython is an enhanced interactive Python interpreter. >Invoke the IPython interpreter >Quit the IPython interpreter >Navigate th..

Basic

Foss : Python 3.4.3 - English

Outline: Use Python 3.4.3 Use Ipython version 5.1.0 Start IPython with pylab. ImportError if matplotlib is not installed clf() function Use the linspace function to create equally spac..

Basic

Foss : Python 3.4.3 - English

Outline: Use Python 3.4.3 Use Ipython version 5.1.0 Modify the attributes of a plot Pass additional keyword arguments to plot command Add title to a plot using 'title' command. Incor..

Basic

Foss : Python 3.4.3 - English

Outline: Use Python 3.4.3 Use Ipython version 5.1.0 Save plots using the savefig() function. Save the plots in different formats like pdf ps png svg eps

Basic

Foss : Python 3.4.3 - English

Outline: -Use Python 3.4.3 - Use IPython 5.1.0 - Draw multiple plots which are overlaid. - Operations on individual plots. - Use the figure command. - Distinguish between multiple over..

Basic

Foss : Python 3.4.3 - English

Outline: * Use Python 3.4.3 * Use IPython 5.1.0 * Creating subplots * Switching between subplots. * Subplot command * Passing arguments to subplot command. * First argument is the num..

Basic

Foss : Python 3.4.3 - English

Outline: * Use Python 3.4.3 * Use IPython 5.1.0 * Retrieve the history using %history command. * View only a part of history by passing argument to %history command. * Pass arguments t..

Basic

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 ..

Basic

Foss : Python 3.4.3 - English

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..

Basic

Foss : Python 3.4.3 - English

Outline: scatter plot scatter function scatter plot with various arguments logarithmic plot loglog function cat command loadtxt function unpack parameter of loadtxt linspace scatte..

Basic

Foss : Python 3.4.3 - English

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..

Basic

Foss : Python 3.4.3 - English

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..

Intermediate

Foss : Python 3.4.3 - English

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(..

Intermediate

Foss : Python 3.4.3 - English

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..

Intermediate

Foss : Python 3.4.3 - English

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 ..

Intermediate

Foss : Python 3.4.3 - English

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..

Intermediate

Foss : Python 3.4.3 - English

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..

Intermediate

Foss : Python 3.4.3 - English

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 ..

Intermediate

Foss : Python 3.4.3 - English

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..

Intermediate

Foss : Python 3.4.3 - English

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..

Intermediate