<< Chapter < Page
  Itse 1359 introduction to     Page 2 / 7
Chapter >> Page >

You can later retrieve the values that you have stored there by referring to the pigeonhole by its nickname ( identifier ). You can also store a different value in the pigeonhole later if you desire.

The concept of type

Strongly typed languages

One of the main differences between Python and programming languages such as Java and C++ is the concept of type .

In strongly-typed languages like Java and C++, variables not only have a name, they also have a type. The type determines the kind of data that you can store in thepigeonhole.

It is probably more correct to say that the type determines the values that you can store there and the operations (addition, subtraction, etc.) that you can perform on those values.

Python is not strongly typed

One of the characteristics that makes Python easier to use than Java is the fact that with Python you don't have to be concerned about the type of avariable. Python takes care of type issues for you behind the scenes. However that ease of use comes with some costs attached.

Declaration of variables

Another difference between Python and Java is that with Java, you must declare variables before you can use them. Declaration of variables is not required with Python.

With Python, if you need a variable, you simply come up with a name and start using it as a variable.

Dangerous curves ahead !

With this convenience comes some danger. You can only have one variable with the same name within the same scope (I will discuss scope in a future module) .

Don't use the same name for two variables

With Python, if you unintentionally use the same name for two or more variables, the first will be overwritten by the second. This can lead to program bugs that aredifficult to find and fix.

A more subtle danger

A more subtle danger is that you create a variable that you intend to use more than once and you spell it incorrectly in one of those uses. This can be anextremely difficult problem to find and fix. I will illustrate what I mean by this later with a sample program.

Rules for identifiers

The name for a variable must follow the naming rules for identifiers that you will find in the Python Language Reference -- 2.3. Identifiers and keywords .

Give me the rules in plain English

The notation used in the Python Language Reference to define the naming rules is a little complicated, so I will try to interpret it for you.

Allowable characters

I believe that the Python Language Reference -- 2.3. Identifiers and keywords is saying that identifiers must begin with either a letter or an underscore character. Following that, you can use anunlimited sequence of letters (uppercase A through Z or lowercase a through z) , numbers (0 through 9) , or underscore characters.

Note that although the underscore character is allowed, it has special meaning in Python. I recommend that you do not use the underscorecharacter for the identifiers that you create.

Case is significant

The letters can be uppercase or lowercase, and case is significant. In other words, the identifier Ax is not the same as the identifier aX .

Questions & Answers

what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
cell is the building block of life.
Condoleezza Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Itse 1359 introduction to scripting languages: python. OpenStax CNX. Jan 22, 2016 Download for free at https://legacy.cnx.org/content/col11713/1.32
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Itse 1359 introduction to scripting languages: python' conversation and receive update notifications?

Ask