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

Outline: ফাংশন সম্পর্কে একটি ফাংশন কিভাবে সংজ্ঞায়িত করে একটি ফাংশন সংজ্ঞায়িত করার জন্য উদাহরণ আর্গুমেন্ট সহ একটি ফাংশন কল করা আর্গুমেন্ট ছাড়া একটি ফাংশন কল করা একটি ফাংশন থেকে ভ্যাল..

Advanced

Foss : Python 3.4.3 - Bengali

Outline: ডিফল্ট আর্গুমেন্ট সহ ফাংশন ডিফল্ট আর্গুমেন্টের জন্য বিভিন্ন উদাহরণ ডিফল্ট এবং নন-ডিফল্ট আর্গুমেন্টে অদল বদল করা কীওয়ার্ড আর্গুমেন্ট সহ একটি ফাংশন কল করা কীওয়ার্ড আর্গুমেন্ট ছ..

Advanced

Foss : Python 3.4.3 - Bengali

Outline: পাইথন মডিউল কমান্ড লাইন থেকে পাইথন স্ক্রিপ্ট রান করা পাইথন স্ক্রিপ্টে মডিউল কিভাবে ইম্পোর্ট করে? মডিউল থেকে প্রয়োজনীয় ফাংশন কিভাবে ইম্পোর্ট করে? namespace এর ব্যবহার ইম্পোর্..

Advanced

Foss : Python 3.4.3 - Bengali

Outline: পাইথন মডিউল সম্পর্কে ইম্পোর্ট করা কি? একটি ফাংশন লেখা এবং স্ক্রিপ্ট হিসাবে সংরক্ষণ করা একটি পাইথন স্ক্রিপ্ট রান করা মডিউল ইম্পোর্ট করা একটি মডিউল ইম্পোর্ট করার উদাহরণ __name_..

Advanced

Foss : Python 3.4.3 - Bengali

Outline: সফটওয়্যার টেস্টিং কি? একটি সাধারণ ফাংশন লেখা টেস্ট কেসেস কিভাবে লেখে? একটি ফাংশনের জন্য সাধারণ টেস্ট বানানো স্ক্রিপ্ট রান করা এবং কোড টেস্ট করা স্বয়ংক্রিয় টেস্ট টেস্ট কেস ..

Advanced

Foss : Python 3.4.3 - Bengali

Outline: পাইথনে এরর Syntax errors এবং exception উদাহরণ সহ Exceptions উদাহরণ সহ Syntax error ValueError exception এর প্রদর্শন ZeroDivisionError exception এর প্রদর্শন পাইথনে try except..

Advanced

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