Home | Contact Us | Log In | Help
HOME NEW LISTING MOST POPULAR HIGHEST RATED SCRIPTS ADD SCRIPT DOWNLOADS FORUM
Tutorials
  ASP.Net & C#
  ASP
  Perl and PHP
  Java Scripts
  C and C++
  Ajax Tutorials
  J2ee, J2Me, Java
  Python & Ruby Rail
  Crystal Report
  Sap
  CGI
  XML
  Cold Fusion & CFML
  HTML, DHTML & CSS
  Dreamweaver
  FLASH
  Photoshop/Web Designing
  Tools & Utilities
  Oracle/D2K
  Sql Server
  MySql
  Domain Name Registration
  Remotely Hosting
  Web/Server Application
  Hotel Marketing
  Internet and Law
   Search Engine Optimization/SEO
E-Commerce
Interview Questions
Previous< 11 12 13 14 15 16 17 18 19 > Next
PYTHON & RUBY RAIL 15
Complex or Imaginary Numbers

If you have a scientific or mathematical background you may be wondering about complex numbers? If you haven't you may not even have heard of complex numbers, in which case you can safely jump to the next heading because you don't need them! Anyhow some programming languages, including Python, provide built in support for the complex type while others provide a library of functions which can operate on complex numbers. And before you ask, the same applies to matrices too.

Literal Objects

Literal objects are character strings or numbers that appear directly in the code, as did the number 1 that was returned in the previous section. We've seen numbers in action; next, let's look at a string literal.

A string literal is an object that contains a string of characters, such as a name, an address, or an especially witty phrase. In the same way that we created the 1 literal object in the previous example, we can easily create a new string literal object, then send it a message. A string literal is created by enclosing the characters that make up the string in single or double quotes, like this:

Object-level Functionality

At the object level, data storage is handled by instance variables (a name that's derived from the instantiation process mentioned above). Think of instance variables as storage containers that are attached to the object, but to which other objects do not have direct access.

To store or retrieve data from these variables, another object must call an accessor method on the object. An accessor method has the ability to set (and get) the value of the object's instance variables.

python newbie

I'm having problems trying to parse a text file and separating it's contents into a dictionary. The file as something like: name This is the description of the name. another_name Another description of this name. The dictionary should look like: dict = {name: This is the description of the name., another_name: Another discription of this name}

Numeric, Numpy, and Scipy.core

The Numeric community fractured when the future replacement for Numeric (NumPy) was initially released. For a while Numeric users were in 2 camps, some for Numeric, and some for Numpy. The reason for this schism was that Numeric was generally those who had to create a large number of small arrays, and NumPy was faster for those who wanted to use huge arrays.

Previous< 11 12 13 14 15 16 17 18 19 > Next
  Copyright 2000-2006 © SoloScript.com, All rights reserved.