FyberSearch   
stsdas.stsci.edu/pyraf/python_quick_tour.html - Site Info
Submit Your Site To Top Search Engines
Just $14.99!
Find Out Which Search Engines Have Included Your Site
Just $8.99!
Learn To Rank Higher In Search Results
Just $24.99!
Instantly Create Targeted Ads With No Setup Fees
.50+ Cents/mo
Advertise On 225+ Search Engines
Just $4.00/mo
 
Site Info

Use this tool to learn about websites, specifically the one you just entered.

If you find some aspect of it inappropriate it is not our fault.

If you are the owner of this website: yes we are a real search engine, we do have a real web crawler called FyberSpider and you can block it if you feel the urge.


Is It Cataloged?

We are in the process of updating this tool. Until we are done just use our search results to check the inclusion status of your site.
Submit your site to major search engines within 48 hours.
Find out if your site has been cataloged by top search engines for only $8.99.
Below you will see site info taken directly from the URL you entered in real time. This is also known as our URL Breakdown tool and can be used independently of our site info tool.


Page Title

A Quick Tour of Python


Stripped Text Content

This is just a sample of the content found on this website. Please visit the website to read the entire page.


"A Quick Tour of Python This document serves as a whirlwind overview of the basics of Python. We hope it will give adventurous PyRAF users a better idea of what is going on in the Python environment. Contents Python is Dynamic Braces? We Don't Need No Stinking Braces! Python Data Structures Strings Lists Mutability Tuples Dictionaries Truth and Consequences Control Constructs Modules and Namespaces Objects, Classes, and What They Mean to You Defining Functions But Wait! There's More! Python Documentation and Books Books Documentation Python is Dynamic Python is dynamically typed. You do not need to declare variables. You may simply assign to them, which creates the variable. Variables may hold simple types (integers, floats, etc.), functions, and objects among other things. x = 1 name = "sample string" name2 = 'another sample string' name3 = """a multiline string example""" y = 3.14 longint = 100000000000L z = None Note the last example. Python has a special value called None . It is generally used to represent a null value. Variable names are case sensitive. Variables can change type, simply by assigning them a new value of a different type. x = 1 x = "string value" Typing a variable name by itself at the interactive prompt results in its value or information about it being printed out (unless you are in PyRAF and type the name of an IRAF task, in which case CL emulation mode is entered and the task runs with no command-line arguments). Unlike the IRAF CL, no equal-sign (=) is needed to inspect a Python variable: >>> x = 1 >>> x 1 >>> x+3 4 One exception to the rule is that if the value of the expression is None then nothing is printed. A common error is to expect the same behavior in Python scripts. In a script "
....
read entire page


Links to Pages on Other Domain Names

Website Address     Anchor Text     Visit Site
HTTP://pyraf.stsci.edu/IntroToPython.pdf     powerpoint slides     Visit Site
HTTP://pyraf.stsci.edu/IntroToPythonBW.pdf     b w powerpoint slides     Visit Site
http://www.python.org/psa/bookstore     python web site     Visit Site
http://wxPython.org     wxpython     Visit Site
http://numpy.sourceforge.net     http numpy sourceforge net     Visit Site