<< Chapter < Page Chapter >> Page >

Command line versus GUI

The text in Figure 4 was produced using the Python (command line) interface. I don't get exactly the same behavior (with respect to prompts) when I use the Python GUI interface. Rather, what I get is shown in Figure 3 . (Note the missing ... prompt.)

The difference between the ... prompt and the>>>prompt is discussed in section 2.1.2. Interactive Mode of The Python Tutorial . (Note that the tutorial is also accessible in a different format from the Start/All Programs/Python 3.4 selection in Windows.)

Apparently the command-line interface creates the ... prompt when it thinks that the next line is a continuation line. The example given in the tutorial isshown in Figure 5 . (Don't be concerned if you don't understand the code in Figure 5 . I will explain similar code in a future module.)

Figure 5 . Example prompts from The Python Tutorial.
>>>the_world_is_flat = True>>>if the_world_is_flat: ... print("Be careful not to fall off!")... Be careful not to fall off!

Apparently for the case of Figure 4 , the system became confused by the comment and treated the line after the comment as a continuation line.

The IDLE GUI did not become confused in Figure 3 . I believe that it accomplishes line continuation by automatically indenting the next line and nocontinuation was required in either Figure 3 or Figure 4 .

Let's get technical

But not too technical. Computer programs are made up of statements.

Statements are composed of expressions.

(Later we will learn that large Python programs are made up of smaller programs called modules, which are made up of statements, which are composed ofexpressions.)

Statement ends at the end of the line

In Python, a statement normally ends at the end of the line that contains it (although there are exceptions to this rule) .

For the time being, suffice it to say that expressions are made up of

  • literal values
  • variables
  • operators
  • parentheses

Literal values and variables

Literal values are simply numbers that are included in an expression such as the 2 and the 5 shown in Figure 3 .

I will defer a discussion of variables until a future module, and will discuss operators and parentheses in the following paragraphs.

Operators

If you have ever used a hand calculator, you already know what operators are. The plus key on a hand calculator is an operator. The plus sign (+) in the expression shown in Figure 6 is also an operator.

Figure 6 . A Python addition operator.
>>>2+5

In programming jargon, operators are said to operate on operands ..

Operands

In Figure 6 , the 2 is the left operand and the 5 is the right operand of the + operator.

Unary and binary operators

Normally, operators are said to be either unary or binary .

A unary operator has only one operand while a binary operator has two operands.

Some can be either

Some operators, such as the minus sign (-), can be either unary or binary operators.

In its unary mode with a single operand, a minus sign is usually a sign changing operator, while in its binary mode with two operands, a minus sign is usually a subtraction operator.

Questions & Answers

how does Neisseria cause meningitis
Nyibol Reply
what is microbiologist
Muhammad Reply
what is errata
Muhammad
is the branch of biology that deals with the study of microorganisms.
Ntefuni Reply
What is microbiology
Mercy Reply
studies of microbes
Louisiaste
when we takee the specimen which lumbar,spin,
Ziyad Reply
How bacteria create energy to survive?
Muhamad Reply
Bacteria doesn't produce energy they are dependent upon their substrate in case of lack of nutrients they are able to make spores which helps them to sustain in harsh environments
_Adnan
But not all bacteria make spores, l mean Eukaryotic cells have Mitochondria which acts as powerhouse for them, since bacteria don't have it, what is the substitution for it?
Muhamad
they make spores
Louisiaste
what is sporadic nd endemic, epidemic
Aminu Reply
the significance of food webs for disease transmission
Abreham
food webs brings about an infection as an individual depends on number of diseased foods or carriers dully.
Mark
explain assimilatory nitrate reduction
Esinniobiwa Reply
Assimilatory nitrate reduction is a process that occurs in some microorganisms, such as bacteria and archaea, in which nitrate (NO3-) is reduced to nitrite (NO2-), and then further reduced to ammonia (NH3).
Elkana
This process is called assimilatory nitrate reduction because the nitrogen that is produced is incorporated in the cells of microorganisms where it can be used in the synthesis of amino acids and other nitrogen products
Elkana
Examples of thermophilic organisms
Shu Reply
Give Examples of thermophilic organisms
Shu
advantages of normal Flora to the host
Micheal Reply
Prevent foreign microbes to the host
Abubakar
they provide healthier benefits to their hosts
ayesha
They are friends to host only when Host immune system is strong and become enemies when the host immune system is weakened . very bad relationship!
Mark
what is cell
faisal Reply
cell is the smallest unit of life
Fauziya
cell is the smallest unit of life
Akanni
ok
Innocent
cell is the structural and functional unit of life
Hasan
is the fundamental units of Life
Musa
what are emergency diseases
Micheal Reply
There are nothing like emergency disease but there are some common medical emergency which can occur simultaneously like Bleeding,heart attack,Breathing difficulties,severe pain heart stock.Hope you will get my point .Have a nice day ❣️
_Adnan
define infection ,prevention and control
Innocent
I think infection prevention and control is the avoidance of all things we do that gives out break of infections and promotion of health practices that promote life
Lubega
Heyy Lubega hussein where are u from?
_Adnan
en français
Adama
which site have a normal flora
ESTHER Reply
Many sites of the body have it Skin Nasal cavity Oral cavity Gastro intestinal tract
Safaa
skin
Asiina
skin,Oral,Nasal,GIt
Sadik
How can Commensal can Bacteria change into pathogen?
Sadik
How can Commensal Bacteria change into pathogen?
Sadik
all
Tesfaye
by fussion
Asiina
what are the advantages of normal Flora to the host
Micheal
what are the ways of control and prevention of nosocomial infection in the hospital
Micheal
what is inflammation
Shelly Reply
part of a tissue or an organ being wounded or bruised.
Wilfred
what term is used to name and classify microorganisms?
Micheal Reply
Binomial nomenclature
adeolu
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