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 9611 results found.
  1. Instruction Sheet
  2. Installation Sheet
  3. Brochures

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

Foss : Python 3.4.3 - English

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

Intermediate

Foss : Python 3.4.3 - English

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

Intermediate

Foss : Python 3.4.3 - English

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

Intermediate

Foss : Python 3.4.3 - English

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

Intermediate

Foss : Python 3.4.3 - English

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

Intermediate

Foss : Python 3.4.3 - English

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

Intermediate

Foss : Python 3.4.3 - English

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

Intermediate

Foss : Python 3.4.3 - English

Outline: Explanation of while loop Demonstration of while loop with example Print the squares of all the even numbers below 10 using while loop How to use for loop? Print the squares of..

Intermediate

Foss : Python 3.4.3 - English

Outline: Various manipulation in lists Slicing of lists Syntax and demonstration of slicing of lists How to use step value in slicing Striding of list Examples with various parameters ..

Intermediate

Foss : Python 3.4.3 - English

Outline: How to slice a string Various way to get substrings using index Reverse a string How to check if a given string is a palindrome or not Replace characters in a string Convert a..

Intermediate

Foss : Python 3.4.3 - English

Outline: What are tuples? How to declare tuples? Examples to declare tuples Demonstration of creating tuple Accessing tuples by their index positions Iteration over tuples Demonstrati..

Intermediate

Foss : Python 3.4.3 - English

Outline: Overview of dictionaries Creating an empty dictionary Creating a non empty dictionary About key:value pair How to access the dictionary elements Demonstration of wrong key Ad..

Intermediate

Foss : Python 3.4.3 - English

Outline: What are sets in python? Input sets Create sets How to create empty sets? Operations on sets Add and remove methods Union and intersection methods Difference and symmetric_d..

Intermediate

Foss : Python 3.4.3 - English

Outline: About Functions How to define a function Example for defining a function Calling a function with arguments Calling a function without arguments Return values from a function ..

Advanced